99클럽 코테 스터디 26일차 TIL - 백준[9655]

박예슬·2024년 11월 22일
0

99club-study

목록 보기
26/33


문제 풀이

오늘의 문제 - 백준9655.돌 게임

나의 풀이

import java.util.*;
import java.io.*;
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] dp = new int[1001];
        dp[1] = 1;
        dp[2] = 2;
        dp[3] = 1;
        for (int i = 4; i <= n; i++) {
            dp[i] = Math.min(dp[i-1],dp[i-3]) + 1;
        }
        if (dp[n] % 2 == 0) {
            System.out.print("CY");
        } else {
            System.out.print("SK");
        }
    }
}
profile
공부중인 개발자

0개의 댓글