[백준] 9655 돌게임

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

https://github.com/sneakstarberry/


Abstract

[백준] 9655번 돌게임

[백준] 9655번 돌게임

백준 9655번

알고리즘 유형

풀이방법

홀수 일때는 CY가 이기고 짝수일 때는 SK가 이긴다.

#include <iostream>

using namespace std;

int 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 :

{# #}