結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | saitaman |
提出日時 | 2018-07-16 14:57:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,373 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 90,828 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-28 16:34:03 |
合計ジャッジ時間 | 1,489 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> #include <complex> #include <stack> #include <queue> #include <list> #include <unordered_map> #include <utility> #include <map> #include <set> using namespace std; #define rep(i,n) for(int i=0;i<=(n);i++) bool isprime[10010]; //エラトステネス void eratos(int m){ for (int i = 0; i <= m; ++i) isprime[i] = true; isprime[0] = isprime[1] = false; //iを残してiの倍数を消していく for (int i = 2; i <= m; ++i){ if(isprime[i]){ for (int j = 2 * i; j <= m; j += i){ isprime[j] = false; } } } } int dp[10010]; int grundy(int x){ if(dp[x] != -1) return dp[x]; if(x == 2 || x == 3) return dp[x] = 0;//負け set<int> s; for (int i = 2; i <= x; ++i){ if(isprime[i] && x - i >= 2){ s.insert(grundy(x - i)); } } int res = 0; while(s.count(res)){ res++; } return dp[x] = res; } int main(void){ int n; cin >> n; eratos(n); rep(i, 10009)dp[i] = -1; int x = 0; rep(i,n){ if(isprime[n]){ continue; } if(isprime[i]){ x ^= dp[n-i]; } } if(x != 0){ printf("Lose\n"); }else{ printf("Win\n"); } return 0; }