結果

問題 No.7 プライムナンバーゲーム
ユーザー rogi52rogi52
提出日時 2021-11-27 20:44:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 817 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 166,992 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 05:05:42
合計ジャッジ時間 2,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 5 ms
6,948 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 2 ms
6,948 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,948 KB
testcase_10 AC 2 ms
6,948 KB
testcase_11 AC 3 ms
6,948 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 5 ms
6,948 KB
testcase_16 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

vector<int> Eratosthenes(int N){
    vector<int> res, p(N + 1, 1); p[0] = p[1] = 0;
    for(int i = 0; i < N; i++) if(p[i]) {
        for(int j = i + i; j <= N; j += i) p[j] = 0;
    }
    for(int i = 0; i <= N; i++) if(p[i]) res.emplace_back(i);
    return res;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> dp(N + 1, 0), primes = Eratosthenes(N);
    enum{ LOSE, WIN };

    dp[0] = dp[1] = WIN;
    for(int i = 2; i <= N; i++) {
        for(int p : primes) {
            if(p <= i && dp[i - p] == LOSE) {
                dp[i] = WIN;
                break;
            } 
        }
    }

    cout << (dp[N] == WIN ? "Win" : "Lose") << endl;
}
0