줌으로 가기

  1. 1이재명
  2. 2길복순
  3. 3카나리아바이오
  4. 4축구 국가대표 평가전
  5. 5이강인
  6. 6유아인
  7. 7나는솔로
  8. 8김민재
  9. 9에코프로
  10. 10심은우
이슈검색어 오후 4:19
  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
  • 이글루스
  • 소통밸리

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


태그>500p(총 12개의 글)

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

  • Dragons
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/12/29 02:19

    Problem 각 면에 용이 살고 있는 정육면체가 있다. 용은 음식이 담긴 그릇을 갖고 있고, 음식의 양은 면에 표시된다. 매 차례마다 다음 일이 발생한다: 용은 자기와 근접한 면에 있는 용의 음식을 1/4만큼 가지고 올 수 있다. 정육면체 위쪽에 살고 있는 용들의 대장 스노그의 최종 ..

    Topcoder, SRM147, Medium, 500p, Math

  • TreasureHunt
    TreasureHunt
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/12/20 20:40

    Code public class TreasureHunt{ int xLen,yLen; char[][] land; String[] inst; boolean instCheck(int x, int y) { int[] dx = {0,-1,1,0}; int[] dy = {-1,0,0,1}; fo..

    Topcoder, Easy, 500p, Iteration, SimpleSearch

  • 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

  • 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, 조합

  • 클릭하시면, 다른 썸네일을 보실 수 있습니다. 클릭하시면, 다른 썸네일을 보실 수 있습니다. 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, 피타고라스정리

  • StringTrain
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/27 04:14

    Code public class StringTrain{ public String buildTrain(String[] cars) { String train = cars[0]; for (int i=1; i < cars.length; i+) { for (int j = cars[i].length()-1; j > 0; j-) { String s1 = cars[i].substring(0,j); if (!trai..

    Topcoder, Easy, 500p, StringManipulation

  • TennisRallies
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/04/13 12:02

    Code public class TennisRallies{ int rec(int index, int numLength, String curr, int allowed, String[] forbidden) { if(index = numLength) return 1; int ret = 0; for (char stroke = 'c'; stroke <= 'd'; stroke+) { int newAllowed ..

    Topcoder, Easy, 500p, BruteForce

  • TicSolver
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/02/17 07:03

    Code public class TicSolver{ char[][] board; char ch; int[] y1 = {0,0,2,2,1,0,0,0}; int[] x1 = {0,2,2,0,0,1,0,2}; int[] y2 = {0,1,2,1,1,1,1,1}; int[] x2 = {1,2,1,0,1,1,1,1}; int[] y3 = {0,2,2,0,1,2,2,2}; int..

    Topcoder, Easy, 500p, Recursion, Search

  • GreedyChange
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/19 17:20

    Code import java.util.Arrays;public class GreedyChange{ public int smallest(int[] denoms) { Arrays.sort(denoms); int max = denoms[denoms.length-1]*2; int[] mins = new int[max+1]; for (int i=1; i<=max; i+) mins[..

    Topcoder, Easy, 500p, AdvancedMath, DynamicProgramming

  • ExerciseMachine
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/08 18:21

    Code public class ExerciseMachine { public int getPercentages(String time) { int total = Integer.parseInt(time.substring(0, 2)) * 60 * 60 + Integer.parseInt(time.substring(3, 5)) * 60 + Integer.parseInt(time.substring(6, 8))..

    Topcoder, SRM145, Easy, 500p, Math

  • Escape
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/07 18:46

    Code import java.util.LinkedList;public class Escape{ int[] dx = {1,0,-1,0}; int[] dy = {0,1,0,-1}; int[][] map, dist; boolean[][] used; class node { int x,y; node(int x, int y) { this.x = x; this.y = y; } } pub..

    Topcoder, Easy, 500p, GraphTheory, Search

  • 서든어택 이정도는 해줘야 좀쏘는건가요???
    서든어택 이정도는 해줘야 좀쏘는건가요???
    ★덕후흉악범의 비밀기지★!!  by 덕후흉악범|2009/08/06 13:21

    보시다 싶이 오랜만에 서든 좋은 기록이 나왓네요 ㅎㅎ 뭐 최고기록은 아니지만 그래도 498원의 포인트 만족합니다. 써든 오래하다보니 점점 실력이 느는것같네요 그래도 예전 최고기록 노버그 노핵으로 웨어에서 160 ..

    서든어택, 잘나온킬뎃, 킬뎃, 500p

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


블로그 박스오피스순위 유나이트업 걸그룹 FROMFALLTOSPRING 파스타 비프렌드 Kbo리그 이글루스백업 컴인워시

zum이슈 검색어 3/31 오후 4:19

  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.