結果

問題 No.3046 yukicoderの過去問
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-02-29 01:12:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 90,156 KB
最終ジャッジ日時 2024-09-29 12:29:06
合計ジャッジ時間 4,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,212 KB
testcase_01 AC 36 ms
52,448 KB
testcase_02 AC 35 ms
52,600 KB
testcase_03 AC 48 ms
63,004 KB
testcase_04 AC 36 ms
52,436 KB
testcase_05 AC 42 ms
61,968 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 xx in x:
        if i+xx <= K:
            DP[xx+i] = (DP[xx+i] + DP[i]) % (10**9+7)
print(DP[K]%(10**9+7))
0