結果

問題 No.7 プライムナンバーゲーム
ユーザー AuroraAurora
提出日時 2022-05-04 13:22:01
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 629 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 167,680 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 05:07:48
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
  vector<int> P(0);
  for(int i=2;i<=10000;i++){
    bool ok = true;
    for(int j=2;j*j<=i;j++){
      if(i%j == 0){
        ok = false;
        break;
      }
    }
    if(ok) P.push_back(i);
  }
  vector<int> Win(10001,0);
  Win[0] = 1;
  Win[1] = 1;
  for(int i=2;i<=10000;i++){
    bool LoEx = false;
    for(int j=0;j<P.size();j++){
      int t = i-P[j];
      if(t < 0) break;
      if(Win[t] == -1) LoEx = true;
    }
    if(LoEx) Win[i] = 1;
    else Win[i] = -1;
  }
  int N;
  cin >> N;
  if(Win[N] == 1) cout << "Win" << endl;
  else cout << "Lose" << endl;
}
0