結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | zutsu |
提出日時 | 2022-05-10 22:41:56 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 82,184 KB |
実行使用メモリ | 843,824 KB |
最終ジャッジ日時 | 2024-07-18 05:36:43 |
合計ジャッジ時間 | 2,216 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,572 KB |
testcase_01 | AC | 35 ms
52,600 KB |
testcase_02 | AC | 37 ms
52,128 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
K = int(input()) N = int(input()) X = list(map(int, input().split())) dp = [[0]*K for _ in range(K)] mod = 10**9 + 7 for x in X: if x < K: dp[0][x-1] = 1 ans = 0 for i in range(1,K): for j in range(X[0]*i,K): for x in X: if 0 <= j-x < K: dp[i][j] += dp[i-1][j-x] dp[i][j] %= mod ans += dp[i][-1] ans %= mod print(ans)