본문 바로가기

Programmers

(188)
없는 숫자 더하기 1 2 3 4 5 6 7 8 class Solution { public int solution(int[] numbers) { int answer = 45; for(int i=0;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 import java.util.*; class Solution { public int solution(String word) { int answer = 0; int[] add = new int[5]; add[4] = 1; for(int i=3;i>=0;i--){ add[i] = add[i+1] * 5 + 1; } for(int i=0;i
상호 평가 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, ..