줌으로 가기

  1. 1이재명
  2. 2법쩐
  3. 3이강인
  4. 4손흥민
  5. 5최수호
  6. 6미스터트롯2
  7. 7꼭두의 계절
  8. 8연말정산 간소화
  9. 9송가인
  10. 10설암
이슈검색어 오후 11:12
  1. 1이재명
  2. 2법쩐
  3. 3이강인
  4. 4손흥민
  5. 5최수호
  6. 6미스터트롯2
  7. 7꼭두의 계절
  8. 8연말정산 간소화
  9. 9송가인
  10. 10설암
내이글루 마이리더 포토로그 로그인 줌서비스
  • 뉴스
  • TV
  • 허브
  • 쇼핑
  • 가상화폐
  • 자동차
  • 이슈트렌드

egloos

  • 밸리
  • 테마목록
  • 스킨&위젯
  • 모바일앱
  • 포스트검색
    • 포스트검색
    • 이글루검색
통합검색 입력

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

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


태그>250p(총 22개의 글)

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

  • ChristmasBatteries
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2021/02/07 05:47

    Problem 건전지를 넣어 동작하는 장난감이 있다. 장난감은 총 N개, 건전지는 총 N개다. 장난감 번호는 0에서 N-1이고, i번 장난감은 (i mod 5)개 건전지를 필요로 한다. i번 장난감이 주는 즐거움(fun)의 양은 ((X*i*i + Y*i + Z) mod M)이다. 건전지 N개를 사용해 ..

    Topcoder, SRM796, Easy, 250p, BruteForce

  • Bonuses
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2020/03/02 15:53

    Code public class Bonuses{ public int[] getDivision(int[] points) { int len = points.length; int sum = 0, extra = 100; boolean[] used = new boolean[len]; int[] percents = new int[len]; for (int i = 0; i < len; i+) sum ..

    Topcoder, SRM145, Easy, 250p, SimpleMath

  • ArithmeticSequenceDiv1
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/12/21 05:36

    Code public class ArithmeticSequenceDiv1 { public int findMinCost(int[] x) { int n = x.length; int min = 10000; int maxGap = 0; for (int i = 0; i < n-1; i+) if(Math.abs(x[i+1]-x[i]) > maxGap) maxGap = Math.abs(x[i+1..

    Topcoder, Easy, 250p, Search, SimpleMath

  • RepeatedSubstrings
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/12/02 10:28

    Code public class RepeatedSubstrings{ public String decompress(String compressed) { String[] sp = compressed.split("s*[^0-9]+s*"); int[] p1 = new int[sp.length/2]; int[] p2 = new int[sp.length/2]; in..

    Topcoder, Easy, 250p, Compression, Encryption

  • T9Input
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/27 10:30

    Code import java.util.Arrays;import java.util.HashMap;import java.util.TreeSet; public class T9Input { public String[] getKeypresses(String[] messages) { HashMap map = new HashMap(); HashMap dict = new HashMap()..

    Topcoder, Easy, 250p, Iteration, SimpleSearch

  • WordForm
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/24 21:13

    Code public class WordForm { // The problem name is Stemmer. public String getSequence(String word) { word = word.toUpperCase(); char c = word.charAt(0); String res = (c='A' || c='E' || c='I' || c='O' || c='U') ? "V&qu..

    Topcoder, Easy, 250p, StringManipulation

  • SkipRope
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/21 07:56

    Code import java.util.Arrays; public class SkipRope{ public int[] partners(int[] candidates, int height) { Arrays.sort(candidates); int[] res = new int[2]; int best = 201; for (int i = 0; i < candidates.length-1; i+) { if (..

    Topcoder, Easy, 250p, Iteration, SimpleSearch

  • BadClock
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/19 23:22

    Code public class BadClock{ public double nextAgreement (String trueTime, String skewTime, int hourlyGain) { double tSec = Double.parseDouble(trueTime.substring(0,2))*3600 + Double.parseDouble(trueTime.substrin..

    Topcoder, Easy, 250p, Math

  • AustrianLotto
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/09 17:55

    Codepublic class AustrianLotto{ public int[] evaluate(String drawing, String[] picks) { boolean[] n = new boolean[46]; String[] sp = drawing.split(" "); for (int i=0; i < 6; i+) n[Integer.parseInt(sp[i]..

    Topcoder, Easy, 250p, Sorting

  • 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

  • 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

  • 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
이오공감 추천하기
제목:
이오공감운영정책보기
닫기


헤비메탈 간파 화이트스피커 소설 김성태 유머 갸아아아아악 긍휼 오빠는끝 드라마

zum이슈 검색어 1/28 오후 11:12

  1. 1 이재명 동일
  2. 2 법쩐 동일
  3. 3 이강인 동일
  4. 4 손흥민 동일
  5. 5 최수호 동일
  6. 6 미스터트롯2 상승
  7. 7 꼭두의 계절 하락
  8. 8 연말정산 간소화 동일
  9. 9 송가인 동일
  10. 10 설암 동일
이글루스 안드로이드 앱 출시
  • 이용약관
  • 개인정보처리방침
  • 청소년보호정책
  • 이메일 수집거부
  • API센터
  • 고객센터

Copyright ⓒ ZUM internet. All rights reserved.