結果

問題 No.1238 選抜クラス
ユーザー roarisroaris
提出日時 2020-11-18 16:11:57
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 548 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 848,288 KB
最終ジャッジ日時 2024-07-23 09:04:08
合計ジャッジ時間 3,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,660 KB
testcase_01 AC 67 ms
68,776 KB
testcase_02 AC 97 ms
84,012 KB
testcase_03 AC 46 ms
61,264 KB
testcase_04 AC 45 ms
62,008 KB
testcase_05 AC 45 ms
61,012 KB
testcase_06 AC 46 ms
62,236 KB
testcase_07 AC 73 ms
72,272 KB
testcase_08 AC 98 ms
83,936 KB
testcase_09 AC 139 ms
93,868 KB
testcase_10 AC 77 ms
73,268 KB
testcase_11 AC 131 ms
91,132 KB
testcase_12 AC 104 ms
85,548 KB
testcase_13 AC 104 ms
85,488 KB
testcase_14 AC 98 ms
83,640 KB
testcase_15 AC 143 ms
93,796 KB
testcase_16 AC 129 ms
91,148 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
dp = [[[0]*10001 for _ in range(N+1)] for _ in range(N+1)]
dp[0][0][0] = 1
MOD = 10**9+7

for i in range(N):
    for j in range(N+1):
        for k in range(10001):
            dp[i+1][j][k] = (dp[i+1][j][k]+dp[i][j][k])%MOD
            
            if j+1<=N and k+A[i]<=10000:
                dp[i+1][j+1][k+A[i]] = (dp[i+1][j+1][k+A[i]]+dp[i][j][k])%MOD

tle = 0

for i in range(1, N+1):
    for j in range(10001):
        if j>=i*K:
            tle += dp[N][i][j]

print(tle)
0