結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-09-14 11:24:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 986 bytes |
コンパイル時間 | 745 ms |
コンパイル使用メモリ | 66,900 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 05:55:30 |
合計ジャッジ時間 | 2,883 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 232 ms
5,248 KB |
testcase_03 | AC | 17 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 49 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 184 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 203 ms
5,248 KB |
ソースコード
#include <iostream> #include <cstdio> #include <set> #include <algorithm> using namespace std; typedef long long ll; #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){ // printf("%d\n", x); if(dp[x] != -1) return dp[x]; if(x == 0 || x == 1) return dp[x] = 0;//負け set<int> s; for (int i = 2; i <= x; ++i){ if(isprime[i]){ 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, 10010)dp[i] = -1; if(grundy(n) == 0) printf("Lose\n"); else printf("Win\n"); return 0; }