We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bebcdb1 commit b00a658Copy full SHA for b00a658
1 file changed
JHLEE325/202603/08 BOJ G5 돌 게임 6.md
@@ -0,0 +1,19 @@
1
+```java
2
+import java.io.*;
3
+import java.util.*;
4
+
5
+public class Main {
6
+ public static void main(String[] args) throws Exception {
7
+ BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
8
+ StringTokenizer st;
9
10
+ long N = Long.parseLong(br.readLine());
11
12
+ if (N % 7 == 0 || N % 7 == 2) {
13
+ System.out.println("CY");
14
+ } else {
15
+ System.out.println("SK");
16
+ }
17
18
+}
19
+```
0 commit comments