[백준] 9661 돌게임7

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

https://github.com/sneakstarberry/


Abstract

[백준] 9661번 돌게임7

[백준] 9661번 돌게임7

백준 9661번

알고리즘 유형

풀이방법

일정한 규칙이 있는데 1번째와 3번째 그리고 4번째 때 상근이가 이기고 나머지는 창영이가 이긴다.

#include <iostream>

using namespace std;

long long N;

int main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cout.tie(0);
  cin >> N;
  N %= 5;
  if (N == 1 || N == 3 || N == 4) {
    cout << "SK";

  } else {
    cout << "CY";
  }
}

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

Related posts :

{# #}