結果

問題 No.1238 選抜クラス
ユーザー titiatitia
提出日時 2020-09-25 21:51:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 85,352 KB
最終ジャッジ日時 2024-06-28 06:26:42
合計ジャッジ時間 6,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,948 KB
testcase_01 AC 59 ms
72,288 KB
testcase_02 AC 78 ms
78,632 KB
testcase_03 AC 55 ms
64,696 KB
testcase_04 AC 55 ms
65,844 KB
testcase_05 AC 54 ms
65,616 KB
testcase_06 AC 53 ms
64,480 KB
testcase_07 AC 72 ms
78,652 KB
testcase_08 AC 75 ms
78,448 KB
testcase_09 AC 86 ms
80,760 KB
testcase_10 AC 75 ms
78,432 KB
testcase_11 AC 84 ms
80,332 KB
testcase_12 AC 78 ms
78,840 KB
testcase_13 AC 78 ms
78,616 KB
testcase_14 AC 75 ms
78,444 KB
testcase_15 AC 85 ms
80,724 KB
testcase_16 AC 84 ms
80,480 KB
testcase_17 AC 219 ms
85,240 KB
testcase_18 AC 211 ms
85,240 KB
testcase_19 AC 213 ms
84,380 KB
testcase_20 AC 210 ms
84,488 KB
testcase_21 AC 210 ms
84,568 KB
testcase_22 AC 212 ms
85,136 KB
testcase_23 AC 214 ms
85,000 KB
testcase_24 AC 211 ms
85,004 KB
testcase_25 AC 210 ms
85,252 KB
testcase_26 AC 221 ms
84,568 KB
testcase_27 AC 220 ms
84,792 KB
testcase_28 AC 217 ms
85,352 KB
testcase_29 AC 215 ms
84,376 KB
testcase_30 AC 112 ms
82,204 KB
testcase_31 AC 150 ms
83,388 KB
testcase_32 AC 183 ms
83,296 KB
testcase_33 AC 73 ms
78,516 KB
testcase_34 AC 193 ms
84,368 KB
testcase_35 AC 121 ms
82,412 KB
testcase_36 AC 94 ms
81,864 KB
testcase_37 AC 114 ms
82,308 KB
testcase_38 AC 211 ms
84,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
A=[a-K for a in A]            

DP=[0]*20010
DP[10005]=1

import copy

for a in A:
    NDP=copy.deepcopy(DP)

    for i in range(20010):
        if 0<=i+a<20010:
            NDP[i+a]+=DP[i]
            NDP[i+a]%=(10**9+7)

    DP=NDP

print((sum(DP[10005:])-1)%(10**9+7))
0