結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | zutsu |
提出日時 | 2022-05-10 22:46:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,696 KB |
最終ジャッジ日時 | 2024-07-18 05:42:57 |
合計ジャッジ時間 | 3,965 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,696 KB |
testcase_01 | AC | 25 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | AC | 235 ms
14,592 KB |
testcase_04 | AC | 25 ms
10,880 KB |
testcase_05 | AC | 91 ms
11,520 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
K = int(input()) N = int(input()) X = list(map(int, input().split())) dp = [0]*K mod = 10**9 + 7 for x in X: if x < K: dp[x-1] = 1 for j in range(K): for x in X: if 0 <= j-x < K: dp[j] += dp[j-x] dp[j] %= mod print(dp[-1]%mod)