結果

問題 No.3046 yukicoderの過去問
ユーザー Qwerty14Qwerty14
提出日時 2024-10-07 12:13:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 244 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,896 KB
最終ジャッジ日時 2024-10-07 12:13:54
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 275 ms
14,592 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 115 ms
11,520 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
N = int(input())
x = list(map(int,input().split()))
dp = [0]*(K+1)
dp[0] = 1
for i in range(K):
    for j in range(N):
        if i + x[j] <= K:
            dp[i+x[j]] += dp[i]
            dp[i+x[j]] %= 10**9 + 7

print(dp[K])
0