結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | phspls |
提出日時 | 2020-04-17 00:20:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 955 bytes |
コンパイル時間 | 1,762 ms |
コンパイル使用メモリ | 170,996 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 04:53:31 |
合計ジャッジ時間 | 2,611 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,820 KB |
testcase_01 | AC | 11 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 11 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 11 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 11 ms
6,816 KB |
testcase_14 | AC | 11 ms
6,816 KB |
testcase_15 | AC | 11 ms
6,816 KB |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define llong long long vector<int> get_primes() { vector<bool> flgs(10001, true); flgs[0] = false; flgs[1] = false; int limit = 100; vector<int> ret; for(int i=2; i<=limit; i++) { if(!flgs[i]) continue; for(int j=i*i; j<10001; j=j+i) { flgs[j] = false; } } rep(i, 10001) if(flgs[i]) ret.push_back(i); return ret; } int main() { int n; cin >> n; vector<int> primes = get_primes(); vector<int> result(10001, 10000); result[0] = 0; result[1] = 0; result[2] = 1; result[3] = 1; for(int i=2; i<10001; i++) { for(int p: primes) { if(i+p > 10001) break; result[i+p] = min(result[i]+1, result[i+p]); } } if(result[n] % 2 == 1) { cout << "Lose\n"; } else { cout << "Win\n"; } }