結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Im_Gimlet |
提出日時 | 2020-07-23 00:33:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 1,336 bytes |
コンパイル時間 | 1,483 ms |
コンパイル使用メモリ | 170,748 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 16:37:52 |
合計ジャッジ時間 | 2,887 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 132 ms
5,248 KB |
testcase_03 | AC | 9 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 37 ms
5,248 KB |
testcase_07 | AC | 24 ms
5,248 KB |
testcase_08 | AC | 11 ms
5,248 KB |
testcase_09 | AC | 53 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 25 ms
5,248 KB |
testcase_12 | AC | 91 ms
5,248 KB |
testcase_13 | AC | 96 ms
5,248 KB |
testcase_14 | AC | 132 ms
5,248 KB |
testcase_15 | AC | 126 ms
5,248 KB |
testcase_16 | AC | 118 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } using ll = long long; using P = pair<ll, ll>; const long double PI = acos(-1.0L); ll GCD(ll a, ll b) { return b?GCD(b, a%b):a; } ll LCM(ll a, ll b) { return a/GCD(a, b)*b; } // Eratosthenesの篩 vector<bool> primeno(100010, true); void Eratosthenes(int n) { primeno.at(0) = primeno.at(1) = false; int limit = sqrt(n); for(int i = 2; i < limit; ++i) { if(primeno.at(i)) { for(int j = 0; i*(j+2) < n; ++j) { primeno.at(i*(j+2)) = false; } } } } int n; int dp[10010]; int main() { cin >> n; Eratosthenes(10010); for(int i = 0; i <= n; ++i) dp[i] = -1; // 0のとき負ける dp[0] = dp[1] = 1; dp[2] = dp[3] = 0; for(int i = 4; i <= n; ++i) { for(int j = 2; j <= i; ++j) { if(primeno[j]) { if(dp[i-j] == 0) { // 相手に負けの手を渡せる dp[i] = 1; } } } if(dp[i] == -1) dp[i] = 0; } if(dp[n] == 0) cout << "Lose" << endl; else cout << "Win" << endl; }