結果

問題 No.7 プライムナンバーゲーム
ユーザー _oba23__oba23_
提出日時 2018-08-21 21:23:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 62,320 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 16:13:41
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 35 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 12 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 15 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 24 ms
5,248 KB
testcase_13 AC 28 ms
5,248 KB
testcase_14 AC 36 ms
5,248 KB
testcase_15 AC 33 ms
5,248 KB
testcase_16 AC 31 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main(){
    int n;
    cin >> n;
    vector<int> primes;
    vector<bool> cache(n+1, false);
    cache[0]=cache[1]=true;

    for(int i=2; i<=n; ++i){
        bool is_prime=true;
        for(auto prime : primes){
            if(i%prime==0){
                is_prime=false;
                break;
            }
        }
        if(is_prime){
            primes.push_back(i);
        }
        for(auto prime : primes){
            cache[i]=cache[i] | !cache[i-prime];
        }
    }
    cout << (cache[n] ? "Win" : "Lose") << endl;
    return 0;
}
0