結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | tadanoningen |
提出日時 | 2020-09-23 06:32:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 680 ms |
コンパイル使用メモリ | 74,160 KB |
実行使用メモリ | 28,160 KB |
最終ジャッジ日時 | 2024-06-27 10:12:22 |
合計ジャッジ時間 | 7,330 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #define ll long long using namespace std; vector<int> prime(int n){ vector<bool> is_prime(n+1,true); vector<int> p; for(int i=2;i <= n;i++){ if(is_prime[i]){ for(int j=2*i;j <= n;j+=i){ is_prime[j] = false; } p.push_back(i); } } return p; } bool dp[10010]; bool dfs(int n){ if(n == 0 || n == 1) return dp[n] = true; if(n == 2 || n == 3) return dp[n] = false; bool res = false; for(auto &x : prime(n)){ if(dp[n] && !dfs(n-x)){ res = true; break; } } return dp[n] = res; } int main(){ int n; cin >> n; for(int i=0;i <= n;i++){ dp[i] = true; } if(dfs(n)) cout << "Win" << endl; else cout << "Lose" << endl; return 0; }