結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | kuisiba |
提出日時 | 2016-04-18 23:57:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,147 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 61,784 KB |
実行使用メモリ | 237,824 KB |
最終ジャッジ日時 | 2024-10-04 13:59:08 |
合計ジャッジ時間 | 3,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | AC | 293 ms
237,824 KB |
testcase_03 | AC | 16 ms
15,872 KB |
testcase_04 | AC | 5 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | AC | 72 ms
66,688 KB |
testcase_07 | AC | 47 ms
44,544 KB |
testcase_08 | AC | 21 ms
20,864 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 49 ms
45,184 KB |
testcase_12 | AC | 186 ms
165,632 KB |
testcase_13 | AC | 205 ms
177,408 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 237 ms
205,696 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; //nまでの素数の表 vector<int> furui(int n) { vector<int> primeList; vector<int> allNum(n, 1); //素数なら1、違うなら0 allNum.at(0) = 0; allNum.at(1) = 0; for (int i = 2; i * i <= n; ++i) { if(allNum.at(i) == 1) { for (int j = i + i; j < n; j += i) { allNum.at(j) = 0; } } } primeList.push_back(2); for (int i = 3; i < n; i +=2) { if(allNum.at(i)) { primeList.push_back(i); } } return primeList; } //自分から見てwinなら1、loseなら0を返す int func(int n) { vector<int> primeList = furui(n); vector<int> worl(n + 1, -1); if (worl.at(n) != -1) return worl.at(n); for (auto i : primeList) { if (n - i < 2) break; if (func(n-1) != -1) { worl.at(n) = 1; return worl.at(n); } } return worl.at(n) = 0; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int n; cin >> n; cout<< (func(n) ? "Win" : "Lose") << endl; return 0; }