結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | silopy |
提出日時 | 2019-06-29 00:49:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 573 bytes |
コンパイル時間 | 738 ms |
コンパイル使用メモリ | 67,156 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 05:20:30 |
合計ジャッジ時間 | 2,427 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 117 ms
6,944 KB |
testcase_03 | AC | 9 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 34 ms
6,940 KB |
testcase_07 | AC | 23 ms
6,944 KB |
testcase_08 | AC | 12 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 23 ms
6,944 KB |
testcase_12 | AC | 82 ms
6,944 KB |
testcase_13 | AC | 89 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 102 ms
6,944 KB |
ソースコード
#include<iostream> #include<algorithm> using namespace std; using lint=int64_t; int main() { int N; cin >> N; bool isPrime[10010]={}; for(int i=0;i<=N;i++) isPrime[i]=true; isPrime[0]=false; isPrime[1]=false; for(int i=2;i*i<=N;i++) for(int j=1;i*j<=N;j++) isPrime[i*j]=false; isPrime[2]=true; bool win[10010]={}; for(int i=2;i<=N;i++) { for(int j=2;j<=i-2;j++) { if(!isPrime[j]) continue; if(i-j<0) break; if(!win[i-j]) win[i]=true; } } if(win[N]) cout << "Win"; else cout << "Lose"; cout << endl; return 0; }