結果

問題 No.7 プライムナンバーゲーム
ユーザー kazuppakazuppa
提出日時 2024-07-20 11:03:25
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 5,449 ms
コンパイル使用メモリ 277,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 11:03:32
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 14 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int n;cin>>n;
  //素数列挙
  vector<int> sosu(0);
  for(int i=2;i<=n;i++){
    bool sos=true;
    for(int j:sosu){
      if(i<j*j)break;
      if(i%j==0)sos=false;
    }
    if(sos)sosu.push_back(i);
  }
  vector<bool> dp(n+1,true);
  for(int i=2;i<=n;i++){
    bool win=false;
    for(int j:sosu){
      if(i<j)continue;
      if(!dp[i-j])win=true;
    }
    dp[i]=win;
  }
  cout<<(dp[n] ? "Win":"Lose")<<endl;
}
0