結果

問題 No.7 プライムナンバーゲーム
ユーザー hatsukiyurahatsukiyura
提出日時 2024-09-27 18:20:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 918 bytes
コンパイル時間 4,491 ms
コンパイル使用メモリ 318,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 18:20:35
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;
std::vector<int> p;
int fact = []() {
    constexpr int n = 1e5;
    std::vector<int> st(n + 1, 0);
    st[0] = st[1] = 1;
    for (int i = 2; i <= n; ++i) {
        if (!st[i]) {
            p.push_back(i);
        }
        for (auto &pi : p) {
            if (1LL * i * pi > n) break;
            st[i * pi] = 1;
            if (i % pi == 0) break;
        }
    }
    return 0;
}();

int main() {

    std::cin.tie(nullptr)->sync_with_stdio(false);

    
    i64 n;
    std::cin >> n;

    std::vector<int> dp(n + 2, 0);
    const int m = p.size();
    dp[0] = dp[1] = 1;
    for (int i = 0; i <= n; ++i) {
        for (int j = 0; j < m; ++j) {
            if (i - p[j] < 0) continue;
            if (!dp[i - p[j]]) {
                dp[i] = 1;
                break;
            }
        }
    }
    std::cout << (dp[n] ? "Win" : "Lose") << '\n';

    return 0;
}
0