줌으로 가기

  1. 1축구 국가대표 평가전
  2. 2이강인
  3. 3심은우
  4. 4유아인
  5. 5장원영
  6. 6카나리아바이오
  7. 7서준원
  8. 8권도형
  9. 9이재명
  10. 10미국 증시
이슈검색어 오후 9:14
  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' 태그 최근글 이 태그에 글쓰기

  • 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

  • GoldenChain
    GoldenChain
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2021/01/12 06:32

    Problem 다양한 길이의 금사슬을 연결해 목걸이를 만들어야 한다. 연결시키려면, 한 사슬의 끝쪽 고리의 일부를 절단하고 이를 다른 사슬의 끝 고리에 연결하면 된다. 고리를 절단하는 횟수를 최소화해서 목걸..

    Topcoder, SRM147, Easy, 950p, AdvancedMath

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

    Code public class RectangularGrid{ public long countRectangles(int width, int height) { long res = 0; for(int i = 0; i < height; i+) { for(int j = 0; j < width; j+) { if(i = j) continue; res = (height-i) * (width-j); } } return ..

    Topcoder, SRM146, Easy, 300p, Math

  • 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

  • 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

  • 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

  • SetComparison
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/17 20:29

    Code import java.util.HashSet;import java.util.TreeSet;import java.util.StringTokenizer; public class SetComparison{ HashSet getSet(StringTokenizer st) { HashSet s = new HashSet(); String t = st.nextToken(); while (!t...

    Topcoder, Easy, 1000p, StringParsing

  • 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

  • WhichData
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/11/02 09:16

    Code import java.util.ArrayList;import java.util.Arrays; public class WhichData{ public int[] bestVariance(int[] sampleData, int varNum, int varDen) { Arrays.sort(sampleData); int sdLen = sampleData.length; double var ..

    Topcoder, Easy, 300p, BruteForce, Math

  • ShuffleMethod
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/10/04 18:35

    Code public class ShuffleMethod{ int n; int[] ts; boolean[] flag; int[] sn; // selected number int[][] pn; // possible number boolean visit(int cnt) { for (int i = 0; i < n; i+) { if (flag[i+1]) continue; for (int j = 0; j < pn..

    Topcoder, Easy, GraphTheory, 1000p

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


빙속성남자와쿨한동료여자 헬무트뉴튼 FROMFALLTOSPRING 컴인워시 파스타 또_현대산업개발이야 변기 루니마라 블로그 더록

zum이슈 검색어 3/28 오후 9:14

  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.