結果

問題 No.1238 選抜クラス
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-26 20:03:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 84,100 KB
最終ジャッジ日時 2024-06-29 17:39:19
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,888 KB
testcase_01 AC 39 ms
58,380 KB
testcase_02 AC 41 ms
60,956 KB
testcase_03 AC 38 ms
56,936 KB
testcase_04 AC 40 ms
57,472 KB
testcase_05 AC 38 ms
58,612 KB
testcase_06 AC 39 ms
57,548 KB
testcase_07 AC 41 ms
60,376 KB
testcase_08 AC 42 ms
61,260 KB
testcase_09 AC 43 ms
61,700 KB
testcase_10 AC 42 ms
60,392 KB
testcase_11 AC 43 ms
61,580 KB
testcase_12 AC 41 ms
60,640 KB
testcase_13 AC 42 ms
60,584 KB
testcase_14 AC 42 ms
60,880 KB
testcase_15 AC 44 ms
63,316 KB
testcase_16 AC 43 ms
62,696 KB
testcase_17 AC 239 ms
83,716 KB
testcase_18 AC 215 ms
73,712 KB
testcase_19 AC 218 ms
72,980 KB
testcase_20 AC 218 ms
83,228 KB
testcase_21 AC 188 ms
72,280 KB
testcase_22 AC 245 ms
83,924 KB
testcase_23 AC 233 ms
72,692 KB
testcase_24 AC 246 ms
84,100 KB
testcase_25 AC 235 ms
73,524 KB
testcase_26 AC 246 ms
83,520 KB
testcase_27 AC 232 ms
73,112 KB
testcase_28 AC 232 ms
74,724 KB
testcase_29 AC 222 ms
73,512 KB
testcase_30 AC 50 ms
65,436 KB
testcase_31 AC 79 ms
68,840 KB
testcase_32 AC 130 ms
71,252 KB
testcase_33 AC 42 ms
59,992 KB
testcase_34 AC 160 ms
72,656 KB
testcase_35 AC 55 ms
66,484 KB
testcase_36 AC 44 ms
62,816 KB
testcase_37 AC 53 ms
65,948 KB
testcase_38 AC 208 ms
73,948 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-1)*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