結果

問題 No.2551 2, 3, 5, 7 Game
ユーザー HIKKY1317HIKKY1317
提出日時 2023-11-25 14:36:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 166,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 10:45:16
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  int T;
  cin >> T;
  long long N[T+1];
  long long ans;
  bool win;
  for(int i=1;i<=T;i++){
    cin >> N[i];
    win=true;
    ans=N[i]+1;
    while(1){
      if(win){
        ans/=2;
        win=false;
      }
      else{
        ans/=7;
        win=true;
      }
      if(ans<=1){
        if(win){
          cout << "sepa" << endl;
          break;
        }
        else{
          cout << "ryota" << endl;
          break;
        }
      }
    }
  }
}
0