줌으로 가기

  1. 1리플
  2. 2카나리아바이오
  3. 3이재명
  4. 4이근
  5. 5이다해
  6. 6에코프로
  7. 7손흥민
  8. 8전두환 손자
  9. 9안성훈
  10. 10애플페이
이슈검색어 오전 8:50
  1. 1리플
  2. 2카나리아바이오
  3. 3이재명
  4. 4이근
  5. 5이다해
  6. 6에코프로
  7. 7손흥민
  8. 8전두환 손자
  9. 9안성훈
  10. 10애플페이
내이글루 마이리더 포토로그 로그인 줌서비스
  • 뉴스
  • TV
  • 허브
  • 쇼핑
  • 가상화폐
  • 자동차
  • 이슈트렌드

egloos

  • 밸리
  • 테마목록
  • 포스트검색
    • 포스트검색
    • 이글루검색
통합검색 입력

  • 전체인기글
  • 영화
  • 방송&연예
  • 게임
  • 포켓몬GO
  • 애니메이션
  • 만화
  • 도서
  • 음악
  • 공연&전시
  • 음식
  • 애완반려동물
  • 여행
  • 사진
  • 패션&뷰티
  • 연애
  • 개그
  • 일상
  • 육아
  • IT
  • 얼리어답터
  • 지름
  • 자동차
  • 스포츠
  • 뉴스비평
  • 인문사회
  • 역사
  • 세계
  • 과학
  • 토이
  • 창작
  • 벼룩시장
  • 지식Q&A
  • 이글루스
  • 소통밸리

'밸리리더'를 이용하시면, 창이동 없이 빠르고 가볍게 보실 수 있습니다. 밸리리더열기


태그>easy(총 67개의 글)

'easy' 관련 최근글이글루스 'easy' 태그 최근글 이 태그에 글쓰기

  • WaterPressure
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/09/09 01:56

    Code import java.util.ArrayList; public class WaterPressure{ int[] dy = {-1,0,1,0}; int[] dx = {0,1,0,-1}; class Point { int x,y; Point(int x, int y) { this.x = x; this.y = y; } } public int howLong(String[] layout) { int..

    Topcoder, Easy, Simulation, 500p, BFS

  • Swimmers
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/08/30 12:19

    Code public class Swimmers{ public int[] getSwimTimes(int[] distances, int[] speeds, int current) { int[] res = new int[distances.length]; for (int i=0; i < distances.length; i+) { if(distances[i] = 0) res[i] = 0;..

    Topcoder, Easy, 250p, SimpleMath

  • MineField
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/08/24 19:32

    Code public class MineField{ public String[] getMineField(String mineLocations) { char[][] board = new char[9][9]; for (int i = 0; i < 9; i+) for (int j = 0; j < 9; j+) board[i][j] = '0'; for (int i = 1; i < mineLocations...

    Topcoder, Easy, 250p, StringManipulation

  • UndergroundVault
    UndergroundVault
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/08/04 03:39

    Code 1import java.util.ArrayList; public class UndergroundVault{ int n; boolean canBeSealed(int[][] adj, boolean[] sealed, int room) { for (int k = 0; k < n; k+) ..

    Topcoder, Easy, 1000p, GraphTheory, Floyd-Warshall

  • ResistorCombinations
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/07/10 14:27

    Code import java.util.ArrayList;import java.util.HashSet; public class ResistorCombinations{ double t, closest, res; ArrayList getSet(ArrayList copy, int idx, int n, int size) { ArrayList S = new ArrayList(); for (int i = idx; i &l..

    Topcoder, Easy, 500p, BruteForce, 조합

  • Planets
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/06/20 01:23

    Code import java.text.DecimalFormat; public class Planets{ public String[] locations(String[] planets, int time) { double G = 6.673E-11; double t = 3600; int n = planets.length; double[] f = new double[3]; double[] m = new..

    Topcoder, Easy, 1000p, Simulation, StringManipulation

  • 클릭하시면, 다른 썸네일을 보실 수 있습니다. 클릭하시면, 다른 썸네일을 보실 수 있습니다. JarBox thumbnail thumbnail
    JarBox
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/06/16 17:59

    Code public class JarBox{ public int numJars(int radius, int woodlength) { int m = 1; for (int row=2; ; row+) { double h = 2*radius + (row-1)*Math.sqrt(3)*radius; double ..

    Topcoder, Easy, 500p, Geometry, 피타고라스정리

  • Mandelbrot
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/06/14 18:52

    Code public class Mandelbrot{ public int iterations(int max, double a, double b) { double za = a, zb = b; for (int i=0; i <= max; i+) { if (za*za+zb*zb > 4) return i; double a2 = za*za - zb*zb + a; double b2 = 2*za*zb + ..

    Topcoder, Easy, 450p, Math, Simulation

  • BitmapToGraph
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/06/12 21:37

    Code import java.util.TreeSet; public class BitmapToGraph{ int[] dx = {-1,0,1,1,1,0,-1,-1}; int[] dy = {-1,-1,-1,0,1,1,1,0}; int n,m; String[] bmap; char check(int nx, int ny) { return (nx<0 || nx>=m || ny<0 |..

    Topcoder, Easy, 1050p, Simulation, StringParsing

  • Rooms
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/06/03 02:33

    Code public class Rooms { public int[] finalRooms(String[] rooms, String doors, int start) { int n = rooms.length; boolean[] pos = new boolean[n]; int[][][] nrooms = new int[n][91][]; for (int i = 0; i < n; i+) ..

    Topcoder, Easy, 950p, GraphTheory

  • MissingLetters
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/31 16:56

    Code import java.util.Arrays; public class MissingLetters{ public String getMissingLetters(String sentence) { sentence = sentence.toUpperCase(); String res = ""; for (char c = 'A'; c <= 'Z'; c+) if (sentence...

    Topcoder, Easy, 250p, Iteration, SimpleSearch

  • ParallelSpeedup
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/31 16:04

    Code public class ParallelSpeedup{ public int numProcessors(int k, int overhead) { int min = k; for (int num = 2, j = 0, d = 1; ; num+, j = d+) { int cycleTime = (k%num = 0) ? k/num : k/num+1; int total = cycleTime + (j+d..

    Topcoder, Easy, 250p, BruteForce, Iteration

  • Justifier
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/31 13:34

    Code public class Justifier{ public String[] justify(String[] textIn) { int longest = 0; for (int i = 0; i < textIn.length; i+) if (textIn[i].length() > longest) longest = textIn[i].length(); for (int i = 0; i < textIn.length;..

    Topcoder, Easy, 250p, StringManipulation

  • UserId
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/29 18:50

    Code public class UserId{ String[] iu; String delch(String s) { return s.replace(" ","").replace("'",""); } boolean chkNotInUse(String s) { for (int i=0; i < iu.length; i+) i..

    Topcoder, Easy, 300p, Simulation, StringManipulation

  • DivideByZero
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/29 06:24

    Code import java.util.Arrays;import java.util.HashSet; public class DivideByZero{ public int CountNumbers(int[] numbers) { HashSet paper = new HashSet(); for (int i : numbers) paper.add(i); int old = 0; while (paper.si..

    Topcoder, Easy, 250p, BruteForce, Math

1 2 3 4 5
이오공감 추천하기
제목:
이오공감운영정책보기
닫기


★ 블로그 넷플릭스 던전에서만남을추구하면안되는걸까 소설 Diablo4 G3 샤잠신들의분노 호랑이 고양이

zum이슈 검색어 3/22 오전 8:50

  1. 1 리플 동일
  2. 2 카나리아바이오 동일
  3. 3 이재명 동일
  4. 4 이근 동일
  5. 5 이다해 상승
  6. 6 에코프로 하락
  7. 7 손흥민 상승
  8. 8 전두환 손자 동일
  9. 9 안성훈 하락
  10. 10 애플페이 동일
이글루스 안드로이드 앱 출시
  • 이용약관
  • 개인정보처리방침
  • 청소년보호정책
  • 이메일 수집거부
  • 고객센터

Copyright ⓒ ZUM internet. All rights reserved.