結果
問題 | No.1238 選抜クラス |
ユーザー | AEn |
提出日時 | 2022-05-22 11:53:19 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 578 bytes |
コンパイル時間 | 133 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 848,084 KB |
最終ジャッジ日時 | 2024-09-20 12:28:08 |
合計ジャッジ時間 | 4,384 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
65,388 KB |
testcase_01 | AC | 63 ms
68,552 KB |
testcase_02 | AC | 100 ms
83,952 KB |
testcase_03 | AC | 44 ms
61,768 KB |
testcase_04 | AC | 45 ms
61,292 KB |
testcase_05 | AC | 47 ms
62,408 KB |
testcase_06 | AC | 45 ms
61,956 KB |
testcase_07 | AC | 74 ms
74,312 KB |
testcase_08 | AC | 104 ms
83,876 KB |
testcase_09 | AC | 144 ms
93,568 KB |
testcase_10 | AC | 89 ms
80,988 KB |
testcase_11 | AC | 142 ms
91,512 KB |
testcase_12 | AC | 112 ms
85,376 KB |
testcase_13 | AC | 111 ms
85,496 KB |
testcase_14 | AC | 102 ms
84,128 KB |
testcase_15 | AC | 148 ms
93,512 KB |
testcase_16 | AC | 157 ms
91,604 KB |
testcase_17 | MLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
N, K = map(int, input().split()) A = list(map(int, input().split())) mod = 10**9+7 dp = [[[0]*10001 for _ in range(N+1)] for _ in range(N+1)] dp[0][0][0] = 1 res = 0 for i in range(1, N+1): for j in range(N+1): for k in range(10001): dp[i][j][k] += dp[i-1][j][k] dp[i][j][k] %= mod if j > 0 and k+A[i-1] <= 10000: dp[i][j][k+A[i-1]] += dp[i-1][j-1][k] dp[i][j][k+A[i-1]] %= mod if i == N and j > 0 and k >= j*K: res += dp[i][j][k] res %= mod print(res)