結果
問題 |
No.3046 White Tiger vs Monster
|
ユーザー |
![]() |
提出日時 | 2025-04-15 22:56:24 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 466 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 81,724 KB |
実行使用メモリ | 66,896 KB |
最終ジャッジ日時 | 2025-04-15 22:58:01 |
合計ジャッジ時間 | 7,853 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 80 |
ソースコード
import bisect MOD = 10**9 + 7 K = int(input()) N = int(input()) x = list(map(int, input().split())) x.sort() dp = [0] * (K + 1) dp[0] = 1 # Base case: 0 steps, 1 way for k in range(1, K + 1): # Find the rightmost index where x[i] <= k idx = bisect.bisect_right(x, k) - 1 total = 0 for i in range(idx + 1): d = x[i] if k - d >= 0: total += dp[k - d] total %= MOD dp[k] = total % MOD print(dp[K] % MOD)