結果

問題 No.1238 選抜クラス
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-26 11:35:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 79,792 KB
最終ジャッジ日時 2024-06-28 21:58:15
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,208 KB
testcase_01 AC 43 ms
62,248 KB
testcase_02 AC 47 ms
62,804 KB
testcase_03 AC 36 ms
58,088 KB
testcase_04 AC 34 ms
58,836 KB
testcase_05 AC 34 ms
57,584 KB
testcase_06 AC 37 ms
58,016 KB
testcase_07 AC 44 ms
62,336 KB
testcase_08 AC 46 ms
62,340 KB
testcase_09 AC 49 ms
64,916 KB
testcase_10 AC 45 ms
62,604 KB
testcase_11 AC 47 ms
64,208 KB
testcase_12 AC 48 ms
62,828 KB
testcase_13 AC 48 ms
64,156 KB
testcase_14 AC 46 ms
63,092 KB
testcase_15 AC 49 ms
64,040 KB
testcase_16 AC 47 ms
64,644 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 86 ms
77,704 KB
testcase_20 WA -
testcase_21 AC 85 ms
78,040 KB
testcase_22 WA -
testcase_23 AC 96 ms
77,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 89 ms
78,468 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 57 ms
67,612 KB
testcase_31 WA -
testcase_32 AC 79 ms
74,668 KB
testcase_33 AC 44 ms
61,972 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 51 ms
65,628 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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:]))
0