본문 바로가기

전체 글

(212)
상호 평가 12345678910111213141516171819202122232425262728293031323334353637383940414243class Solution { public String solution(int[][] scores) { String answer = ""; for(int i=0;i= 80) answer += "B"; else if(sum >= 70) answer += "C"; else if(sum >= 50) answer += "D"; else answer += "F"; } return answer; }}Colored by Color Scriptercs
부족한 금액 계산하기 123456789101112class Solution { public long solution(long price, long money, int count) { long answer = 0; for(int i=1;i
가장 긴 팰린드롬 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 class Solution { public int solution(String s) { int answer = 1; for (int i = 1; i = 0 && right
기둥과 보 설치 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 import..
기지국 설치 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 class Solution { public int solution(int n, int[] stations, int w) { int answer = 0; int i = 1, j = 0; while(i
[카카오 인턴] 경주로 건설 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 import java.util.*; class Solution { private static int min = Integer.MAX_VALUE/ 2; private static int[][] direction = { { 1, 0 }, { 0, 1 }, { 0, -1 }, { -1, 0 } }; // 하, 우, 좌, 상 public static void Search(int[][] board, int[][] check, int pre_i, int pre_j, ..
섬 연결하기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 import java.util.*; class Solution { private static int[] parent; // 부모 설정 public static void Union(int a, int b){ a = Find(a); b = Find(b); if (a > b) { parent[a] = b; } else { parent[b] = a; } } // 부모 찾기 public static int Find(int x) { if (parent[x] == x)..
멀리 뛰기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public long solution(int n) { long answer = 0; int[] arr = new int[n+1]; int div = 1234567; if(n