結果

問題 No.1238 選抜クラス
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-26 11:38:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-28 22:01:46
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,648 KB
testcase_01 AC 43 ms
61,312 KB
testcase_02 AC 47 ms
62,592 KB
testcase_03 AC 34 ms
57,088 KB
testcase_04 AC 35 ms
57,088 KB
testcase_05 AC 35 ms
56,960 KB
testcase_06 AC 33 ms
57,216 KB
testcase_07 AC 45 ms
61,952 KB
testcase_08 AC 46 ms
62,720 KB
testcase_09 AC 48 ms
64,384 KB
testcase_10 AC 44 ms
62,720 KB
testcase_11 AC 48 ms
63,232 KB
testcase_12 AC 46 ms
63,140 KB
testcase_13 AC 46 ms
62,976 KB
testcase_14 AC 45 ms
62,592 KB
testcase_15 AC 48 ms
63,872 KB
testcase_16 AC 48 ms
63,488 KB
testcase_17 AC 88 ms
77,824 KB
testcase_18 AC 88 ms
78,336 KB
testcase_19 AC 86 ms
77,440 KB
testcase_20 AC 85 ms
76,928 KB
testcase_21 AC 86 ms
76,416 KB
testcase_22 AC 95 ms
76,928 KB
testcase_23 AC 91 ms
78,080 KB
testcase_24 AC 87 ms
77,824 KB
testcase_25 AC 86 ms
77,056 KB
testcase_26 AC 88 ms
78,080 KB
testcase_27 AC 91 ms
77,952 KB
testcase_28 AC 89 ms
78,336 KB
testcase_29 AC 92 ms
78,080 KB
testcase_30 AC 60 ms
66,432 KB
testcase_31 AC 79 ms
71,168 KB
testcase_32 AC 83 ms
73,984 KB
testcase_33 AC 45 ms
62,336 KB
testcase_34 AC 84 ms
76,288 KB
testcase_35 AC 63 ms
68,736 KB
testcase_36 AC 53 ms
64,512 KB
testcase_37 AC 60 ms
66,816 KB
testcase_38 AC 91 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#k以上だから引けば0以上か
#部分列DPテーブル
mod=10**9+7
n,k=map(int,input().split())
a=[i-k for i in list(map(int,input().split()))]
dp=[[0]*20001 for i in range(n)]
dp[0][a[0]+10000]=1
for i in range(1,n):
    for j in range(20001):
        dp[i][j]=dp[i-1][j]
    dp[i][a[i]+10000]+=1
    for j in range(20001):
        dp[i][j]%=mod
        if 0<=j+a[i]<=20000:
            dp[i][j+a[i]]+=dp[i-1][j]
print(sum(dp[-1][10000:])%mod)
0