結果

問題 No.7 プライムナンバーゲーム
ユーザー tinumukiti631tinumukiti631
提出日時 2016-11-07 00:45:29
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 565 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 162,072 KB
実行使用メモリ 9,892 KB
最終ジャッジ日時 2024-11-25 03:29:52
合計ジャッジ時間 14,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,892 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,816 KB
testcase_10 WA -
testcase_11 AC 1 ms
6,816 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,820 KB
testcase_14 TLE -
testcase_15 AC 1 ms
6,820 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define pb push_back
int main(){
  bool flag[10001] = {0};
  vector<int>table;
  for(int i = 2;i <= 10000;i++){
    if(flag[i] == true)continue;
    table.pb(i);
    for(int j = i;j <= 10000;j += i)flag[j] = true;
  }
  int N;
  cin >> N;
  int cnt = 0;
  while(1){
    int i;
    if(N <= 3)break;
    for(i = 0;i < table.size();i++){
      if(table[i] >= N)break;
    }
    while(table[i] + 1 >= N)i--;
    N -= table[i];
    cnt++;
  }
  if(cnt % 2)cout << "Win" << endl;
  else cout << "Lose" << endl;
  return 0;
}
0