May 11, 2021 ( last updated : May 11, 2021 )
		
		
			게임 이론
		
			알고리즘
		
    
https://github.com/sneakstarberry/
[백준] 9656번 돌게임2
이전 문제인 돌게임의 반대이다.
#include <iostream>
using namespace std;
int N;
int main() {
  cin >> N;
  if (N % 2) {
    cout << "CY";
  } else {
    cout << "SK";
  }
  return 0;
}
Originally published May 11, 2021
    
 Latest update May 11, 2021
Related posts :