結果

問題 No.7 プライムナンバーゲーム
ユーザー pessimistpessimist
提出日時 2024-10-20 22:22:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 202,812 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-20 22:22:46
合計ジャッジ時間 3,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
bool dp[10101];
int main(){
  cin.tie(nullptr)->sync_with_stdio(false);
  int N; cin >> N; assert(2 <= N && N <= 10000);
  dp[0] = dp[1] = true;
  vector<int> p;
  for(int i = 2; i <= 10000; ++i){
    bool ok = true;
    for(int j = 2; j <= sqrt(i); ++j){
      ok &= (i % j);
    }
    if(ok) p.emplace_back(i);
  }
  for(int i = 0; i < N; ++i){
    for(int j: p){
      if(i + j <= N) dp[i + j] |= !dp[i];
    }
  }
  cout << (dp[N] ? "Win" : "Lose") << endl;
  return 0;
}
0