結果

問題 No.1238 選抜クラス
ユーザー tanon710tanon710
提出日時 2020-09-25 23:58:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,096 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-06-28 08:25:36
合計ジャッジ時間 19,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,056 KB
testcase_01 AC 54 ms
61,440 KB
testcase_02 AC 59 ms
62,080 KB
testcase_03 AC 44 ms
58,752 KB
testcase_04 AC 49 ms
59,008 KB
testcase_05 AC 45 ms
58,880 KB
testcase_06 AC 45 ms
59,136 KB
testcase_07 AC 56 ms
62,420 KB
testcase_08 AC 60 ms
62,592 KB
testcase_09 AC 71 ms
62,464 KB
testcase_10 AC 56 ms
62,080 KB
testcase_11 AC 70 ms
63,104 KB
testcase_12 AC 63 ms
62,720 KB
testcase_13 AC 62 ms
62,556 KB
testcase_14 AC 60 ms
62,464 KB
testcase_15 AC 74 ms
62,976 KB
testcase_16 AC 70 ms
63,232 KB
testcase_17 AC 1,083 ms
71,808 KB
testcase_18 AC 1,030 ms
71,168 KB
testcase_19 AC 1,057 ms
71,296 KB
testcase_20 AC 992 ms
70,656 KB
testcase_21 AC 932 ms
70,528 KB
testcase_22 AC 1,020 ms
69,632 KB
testcase_23 AC 1,019 ms
70,144 KB
testcase_24 AC 1,075 ms
69,632 KB
testcase_25 AC 1,076 ms
70,424 KB
testcase_26 AC 1,077 ms
71,168 KB
testcase_27 AC 1,089 ms
72,320 KB
testcase_28 AC 1,096 ms
72,320 KB
testcase_29 AC 1,050 ms
71,168 KB
testcase_30 AC 148 ms
65,280 KB
testcase_31 AC 368 ms
67,456 KB
testcase_32 AC 665 ms
69,120 KB
testcase_33 AC 55 ms
62,080 KB
testcase_34 AC 798 ms
69,888 KB
testcase_35 AC 204 ms
65,920 KB
testcase_36 AC 88 ms
64,512 KB
testcase_37 AC 159 ms
65,536 KB
testcase_38 AC 989 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

n,k=map(int,input().split())
arr=list(map(int,input().split()))
dp=[[0]*10001 for _ in range(n+1)]
dp[0][0]=1
for val in arr:
    for i in range(n,0,-1):
        for j in range(10000,val-1,-1):
            dp[i][j]+=dp[i-1][j-val]
            dp[i][j]%=mod
ans=0
for i in range(1,n+1):
    for j in range(10001):
        if j>=i*k:
            ans+=dp[i][j]
            ans%=mod
print(ans)
0