結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | satama6 |
提出日時 | 2022-04-25 16:11:42 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 267 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 89,576 KB |
最終ジャッジ日時 | 2024-06-27 11:15:02 |
合計ジャッジ時間 | 4,059 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,280 KB |
testcase_01 | AC | 37 ms
52,484 KB |
testcase_02 | AC | 38 ms
52,788 KB |
testcase_03 | AC | 49 ms
63,300 KB |
testcase_04 | AC | 38 ms
52,184 KB |
testcase_05 | AC | 45 ms
60,048 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
K = int(input()) N = int(input()) X = list(map(int, input().split())) dp = [0 for _ in range(K+1)] dp[0] = 1 mod = 1000000007 for k in range(1, K+1): for x in X: if k-x < 0: break dp[k] += dp[k-x] dp[k] %= mod print(dp[K])