結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | icchipost |
提出日時 | 2021-12-18 20:14:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 683 bytes |
コンパイル時間 | 1,480 ms |
コンパイル使用メモリ | 169,308 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 13:53:54 |
合計ジャッジ時間 | 3,611 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 224 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 62 ms
5,376 KB |
testcase_07 | AC | 42 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 43 ms
5,376 KB |
testcase_12 | AC | 158 ms
5,376 KB |
testcase_13 | AC | 171 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 197 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; using pii = pair<int, int>; int main() { int n; cin >> n; vector<int> p(n + 1, 1); p[0] = p[1] = 0; for (int i = 2; i <= n; i++) { if (!p[i]) continue; for (int j = 2 * i; j <= n; j += i) { p[j] = 0; } } vector<int> dp(n + 1, -1); dp[2] = 0; for (int i = 2; i <= n; i++) { if (dp[i] == -1) continue; for (int j = 0; j <= n; j++) { if (!p[j]) continue; if (i + j <= n && dp[i + j] == -1) dp[i + j] = 1 - dp[i]; } } if (dp[2] == dp[n]) cout << "Lose" << endl; else cout << "Win" << endl; return 0; }