結果

問題 No.1238 選抜クラス
ユーザー 👑 KazunKazun
提出日時 2021-05-21 01:22:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-10-10 07:25:41
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,900 KB
testcase_01 AC 41 ms
53,996 KB
testcase_02 AC 42 ms
54,288 KB
testcase_03 AC 41 ms
54,244 KB
testcase_04 AC 40 ms
55,112 KB
testcase_05 AC 41 ms
54,412 KB
testcase_06 AC 40 ms
54,100 KB
testcase_07 AC 42 ms
54,344 KB
testcase_08 AC 41 ms
54,484 KB
testcase_09 AC 50 ms
61,240 KB
testcase_10 AC 41 ms
54,644 KB
testcase_11 AC 46 ms
62,272 KB
testcase_12 AC 41 ms
55,124 KB
testcase_13 AC 41 ms
54,808 KB
testcase_14 AC 43 ms
53,744 KB
testcase_15 AC 46 ms
62,028 KB
testcase_16 AC 48 ms
61,252 KB
testcase_17 AC 65 ms
73,768 KB
testcase_18 AC 60 ms
70,600 KB
testcase_19 AC 76 ms
76,544 KB
testcase_20 AC 67 ms
74,828 KB
testcase_21 AC 65 ms
74,404 KB
testcase_22 AC 41 ms
54,568 KB
testcase_23 AC 46 ms
61,488 KB
testcase_24 AC 47 ms
61,620 KB
testcase_25 AC 42 ms
54,304 KB
testcase_26 AC 63 ms
74,728 KB
testcase_27 AC 80 ms
76,596 KB
testcase_28 AC 64 ms
72,536 KB
testcase_29 AC 60 ms
71,244 KB
testcase_30 AC 50 ms
64,212 KB
testcase_31 AC 55 ms
66,396 KB
testcase_32 AC 61 ms
71,100 KB
testcase_33 AC 40 ms
55,416 KB
testcase_34 AC 60 ms
69,320 KB
testcase_35 AC 52 ms
64,904 KB
testcase_36 AC 50 ms
63,268 KB
testcase_37 AC 52 ms
64,424 KB
testcase_38 AC 60 ms
71,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,K=map(int,input().split())
M=100*N
A=list(map(lambda x:int(x)-K,input().split()))

Mod=10**9+7
D=defaultdict(int)
D[0]=1

for i in range(1,N+1):
    E=D.copy()

    a=A[i-1]

    for x in E:
        D[x+a]+=E[x]
        D[x+a]%=Mod

X=0
for k in D:
    if k>=0: X+=D[k]

print((X-1)%Mod)
0