[백준] 9659 돌게임5

May 11, 2021 ( last updated : May 11, 2021 )
게임 이론 알고리즘

https://github.com/sneakstarberry/


Abstract

[백준] 9659번 돌게임5

[백준] 9659번 돌게임5

백준 9659번

알고리즘 유형

풀이방법

N의 크기만 늘어났다. 돌게임과 같은 방법으로 쉽게 풀 수 있다.

#include <iostream>

using namespace std;

long long N;

int main() {
  cin >> N;

  if (N % 2) {
    cout << "SK";
  } else {
    cout << "CY";
  }
  return 0;
}

Originally published May 11, 2021
Latest update May 11, 2021

Related posts :

{# #}