줌으로 가기

  1. 1나는솔로
  2. 2김민재
  3. 3이강인
  4. 4에코프로
  5. 5카나리아바이오
  6. 6이재명
  7. 7유아인
  8. 8심은우
  9. 9축구 국가대표 평가전
  10. 10오현규
이슈검색어 오전 8:16
  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' 태그 최근글 이 태그에 글쓰기

  • Inchworm
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/28 18:46

    Code public class Inchworm { public int gcd(int a, int b) { return b=0 ? a : gcd(b,a%b); } int lcm(int a, int b) { return a*b / gcd(a,b); } public int lunchtime(int branch, int rest, int leaf) { return branch/lcm(rest,leaf) ..

    Topcoder, Easy, 250p, Math, Simulation

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

    Code public class Rochambo { public int wins(String opponent) { int w=0; if(opponent.charAt(0) = 'S') w+; if(opponent.charAt(1) = 'S') w+; for (int i=2; i < opponent.length(); i+) { char c; if(opponent.charAt(i-2)..

    Topcoder, Easy, 250p, Simulation

  • 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

  • Commision
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/05/24 01:15

    Code public class Commission{ public double equivalentSales(double sales, double cost, double commission) { return sales * (100 - 20 - cost) / (100 - commission - cost); }} Explanation ※ 계산의 편리함을 위해 %를 소수점으로..

    Topcoder, Easy, 250p, Math

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

    Code public class Scale{ public String[] scale(int x, int y, String[] image) { int m = image.length; int n = image[0].length(); char[][] big = new char[y*m][x*n]; String[] sol = new String[y]; for(int i=0; i < y; ..

    Topcoder, Easy, 650p, Math, 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

  • DQuads
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/03/24 07:36

    Code public class DQuads{ public int count(String[] flights) { int n = flights.length; int count=0; int[][] a = new int[n][n]; for (int i=0; i < n; i+) { if(flights[i].length() = 0) continue; String[] s = flights[i].spl..

    Topcoder, Easy, 250p, BruteForce

  • GasStations
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/03/10 00:42

    Code public class GasStations{ public double tripCost(int[] dist, int[] price, int _mpg, int tankSize, int tripLength) { if(_mpg*tankSize >= tripLength) return 0; int N = dist.length, lowerPrice=20001, idx=0; double lowes..

    Topcoder, Easy, 1000p, Search

  • Circuits
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2019/03/03 14:15

    Code public class Circuits{ public int howLong(String[] connects, String[] costs) { int N = connects.length; int cost[][] = new int[N][N]; for(int i=0; i<N; i+) if(!connects[i].equals("")) { String ..

    Topcoder, Easy, 275p, GraphTheory

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

    Code import java.util.Arrays; public class PickTeam{ int n, bestSum; int[] team; int[][] nums; String[] names, bestTeam; void recur(int idx, int size) { if(size = team.length) { int sum=0; for(int i=0; i < team.length; ..

    Topcoder, Easy, 1000p, 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

  • FaceFinder
    FaceFinder
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/22 04:24

    Code import java.util.LinkedList;import java.awt.Point;public class FaceFinder{ int[][] m; void floodfill(int x, int y) { int[] dx = {0,0,1,-1}; int[] dy = {1,-1,0,0}; Linke..

    Topcoder, Easy, 550p, Geometry

  • PossibleOrders
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/21 16:44

    Code public class PossibleOrders{ int N; long sum; long comb(long n, long r) { long denom=1, numer=1; while (r > 0) {denom *= n-; numer *= r-;} return denom / numer; } void calcul(long[] cnt, int rem, int min) { for (..

    Topcoder, Easy, 1000p, DynamicProgramming, Permutation

  • SkewTree
    불타는 아잍(IT)스크림  by 불타는 아이스크림|2018/06/20 16:33

    Code public class SkewTree{ int[] probs; int[][] best; int getAccess(int i1, int i2) { int total=0; for (int i=i1; i <= i2; i+) total = probs[i]; return total; } int getBest(int i1, int i2) { if(i1 > i2) return 0; if(best[i1][i2]!=0) ..

    Topcoder, Easy, 950p, DynamicProgramming

  • 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

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


블로그 파스타 웹코믹 국민의힘_빚투구제 옆집천사님때문에어느샌가인간적으로타락한사연 비비드 컴인워시 무림외전 미드 아이폰14프로

zum이슈 검색어 3/30 오전 8:16

  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.