結果

問題 No.458 異なる素数の和
ユーザー ooaiuooaiu
提出日時 2024-11-28 10:14:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 249,200 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-28 10:14:51
合計ジャッジ時間 4,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 16 ms
5,248 KB
testcase_02 AC 20 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 39 ms
5,248 KB
testcase_06 AC 18 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 38 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 47 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 18 ms
5,248 KB
testcase_28 AC 46 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 12 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/internal_math>
void solve() {
    int N;
    cin >> N;
    vector<int> P;
    P.reserve(3000);
    const int M = 20000;
    for (int i = 1; i <= min(M, N); i++)
        if (atcoder::internal::is_prime_constexpr(i)) P.push_back(i);
    vector<int> dp(N + 1, -1);
    dp[0] = 0;
    for (unsigned i{}; i < P.size(); i++) {
        for (int j = N + 1; j >= 0; j--)
            if (j - P[i] >= 0 && dp[j - P[i]] != -1) {
                dp[j] = max(dp[j], dp[j - P[i]] + 1);
            }
    }
    cout << dp[N] << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0