May 11, 2021 ( last updated : May 11, 2021 )
게임 이론
알고리즘
https://github.com/sneakstarberry/
[백준] 9660번 돌게임6
일정한 규칙이 있는데 0번째와 2번째 때 창영이가 이기고 나머지는 상근이가 이긴다.
#include <iostream>
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
long long n;
cin >> n;
if (n % 7 == 0 || n % 7 == 2) {
cout << "CY" << endl;
} else {
cout << "SK" << endl;
}
return 0;
}
Originally published May 11, 2021
Latest update May 11, 2021
Related posts :