結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | tetsuzuki1115 |
提出日時 | 2017-12-14 21:30:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 940 bytes |
コンパイル時間 | 925 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 13:27:08 |
合計ジャッジ時間 | 1,592 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 18 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | AC | 6 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 5 ms
6,816 KB |
testcase_12 | AC | 13 ms
6,816 KB |
testcase_13 | AC | 14 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 15 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; int main() { int N; cin >> N; int A[10000] = {0}; vector<int> P; for ( int i = 2; i <= N; i++ ) { if ( !A[i] ) { P.push_back(i); for ( int j = 2; i*j <= N; j++ ) { A[i*j] = 1; } } } vector<int> W(N+1, 0); W[2] = W[3] = 0; for ( int i = 4; i <= N; i++ ) { for ( int j = 0; i-P[j] > 1; j++ ) { if ( !W[i-P[j]] ) { W[i] = 1; } } } // for ( int i = 2; i <= N; i++ ) { // cout << W[i] <<endl; // } cout << ( W[N] ? "Win" : "Lose" ) << endl; return 0; }