結果

問題 No.1238 選抜クラス
ユーザー roarisroaris
提出日時 2020-11-18 16:14:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 671 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 99,520 KB
最終ジャッジ日時 2024-07-23 09:04:16
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
74,748 KB
testcase_01 AC 67 ms
68,476 KB
testcase_02 AC 96 ms
71,348 KB
testcase_03 AC 50 ms
62,724 KB
testcase_04 AC 49 ms
63,692 KB
testcase_05 AC 50 ms
63,244 KB
testcase_06 AC 51 ms
63,444 KB
testcase_07 AC 77 ms
71,016 KB
testcase_08 AC 94 ms
71,880 KB
testcase_09 AC 135 ms
72,304 KB
testcase_10 AC 82 ms
71,272 KB
testcase_11 AC 128 ms
72,112 KB
testcase_12 AC 101 ms
70,428 KB
testcase_13 AC 102 ms
71,244 KB
testcase_14 AC 94 ms
71,096 KB
testcase_15 AC 141 ms
73,588 KB
testcase_16 AC 129 ms
72,764 KB
testcase_17 TLE -
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(2)]
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)%2][j][k] = 0
            
    for j in range(N+1):
        for k in range(10001):
            dp[(i+1)%2][j][k] = (dp[(i+1)%2][j][k]+dp[i%2][j][k])%MOD
            
            if j+1<=N and k+A[i]<=10000:
                dp[(i+1)%2][j+1][k+A[i]] = (dp[(i+1)%2][j+1][k+A[i]]+dp[i%2][j][k])%MOD

tle = 0

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

print(tle)
0