Recent Posts
Notice
No Rules Rules
돌 게임 2 (feat. 백준, 9656번) 본문
728x90
반응형
돌 게임 2
https://www.acmicpc.net/problem/9656
반응형
// woohyeon.kim
// https://www.acmicpc.net/problem/9656
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
if (N & 1) cout << "CY";
else cout << "SK";
cout << "\n";
return 0;
}
// *&)*@*
기존 "돌 게임" 과 반대의 정답 형태입니다.
설명은 이전 문제로 대체합니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
손익분기점 (feat. 백준, 1712번) (0) | 2022.07.30 |
---|---|
줄세우기 (feat. 백준, 2631번) (0) | 2022.07.30 |
알고리즘 수업 - 피보나치 수 1 (feat. 백준, 24416번) (0) | 2022.07.29 |
구간 합 구하기 (feat. 백준, 2042번) (0) | 2022.07.29 |
BABBA (feat. 백준, 9625번) (0) | 2022.07.29 |
Comments