結果

問題 No.3046 yukicoderの過去問
ユーザー Qwerty14Qwerty14
提出日時 2024-10-07 12:20:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 87,652 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-10-07 12:20:32
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,784 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

const int MOD = 1e9 + 7;

int main() {
    int K, N;
    cin >> K >> N;
    
    vector<int> x(N);
    for (int i = 0; i < N; ++i) {
        cin >> x[i];
    }
    
    vector<int> dp(K + 1, 0);
    dp[0] = 1;

    for (int i = 0; i < K; ++i) {
        for (int j = 0; j < N; ++j) {
            int a = i + x[j];
            if (a <= K) {
                dp[a] += dp[i];
                dp[a] %= MOD;
            }
        }
    }

    cout << dp[K] << endl;

    return 0;
}
0