結果

問題 No.1238 選抜クラス
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-26 19:57:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 451 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 85,836 KB
最終ジャッジ日時 2024-06-29 17:37:21
合計ジャッジ時間 5,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,932 KB
testcase_01 AC 35 ms
58,380 KB
testcase_02 AC 37 ms
60,540 KB
testcase_03 AC 35 ms
57,652 KB
testcase_04 AC 35 ms
57,552 KB
testcase_05 AC 35 ms
58,276 KB
testcase_06 AC 34 ms
58,012 KB
testcase_07 AC 37 ms
60,596 KB
testcase_08 AC 38 ms
62,020 KB
testcase_09 AC 40 ms
62,000 KB
testcase_10 AC 38 ms
60,196 KB
testcase_11 AC 38 ms
61,540 KB
testcase_12 AC 37 ms
61,228 KB
testcase_13 AC 36 ms
60,584 KB
testcase_14 AC 36 ms
60,424 KB
testcase_15 AC 38 ms
62,272 KB
testcase_16 AC 38 ms
62,072 KB
testcase_17 RE -
testcase_18 AC 200 ms
74,800 KB
testcase_19 AC 204 ms
72,420 KB
testcase_20 AC 203 ms
83,328 KB
testcase_21 AC 201 ms
73,668 KB
testcase_22 AC 224 ms
83,808 KB
testcase_23 AC 217 ms
72,964 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 209 ms
73,712 KB
testcase_30 AC 53 ms
65,140 KB
testcase_31 AC 71 ms
69,132 KB
testcase_32 AC 124 ms
72,096 KB
testcase_33 AC 41 ms
60,200 KB
testcase_34 AC 150 ms
74,448 KB
testcase_35 AC 55 ms
67,000 KB
testcase_36 AC 45 ms
62,856 KB
testcase_37 AC 52 ms
66,668 KB
testcase_38 AC 197 ms
72,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int, input().split())
*a,=map(int, input().split())
mod=10**9+7

dp=[[0]*(100*100+1) for _ in range(n+1)]
# dp[ここまで選んだ人数][点数]
dp[0][0]=1

for i in range(n):
    for j in range(i+1, 0,-1):
        for score in range(j*100+1):
            dp[j][score+a[i]]+=dp[j-1][score]
            dp[j][score+a[i]]%=mod
            

ans=0
for i in range(n):
    ans+=sum(dp[i+1][k*(i+1):])
    ans%=mod
print(ans)
#print(dp[1][:101])
0