結果

問題 No.1238 選抜クラス
ユーザー roarisroaris
提出日時 2020-11-18 16:18:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 76,856 KB
最終ジャッジ日時 2024-07-23 09:04:30
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,352 KB
testcase_01 AC 41 ms
53,484 KB
testcase_02 AC 40 ms
54,292 KB
testcase_03 AC 39 ms
54,020 KB
testcase_04 AC 40 ms
55,300 KB
testcase_05 AC 40 ms
54,748 KB
testcase_06 AC 38 ms
53,852 KB
testcase_07 AC 41 ms
53,792 KB
testcase_08 AC 43 ms
55,828 KB
testcase_09 AC 54 ms
64,592 KB
testcase_10 AC 43 ms
53,876 KB
testcase_11 AC 48 ms
63,036 KB
testcase_12 AC 41 ms
55,200 KB
testcase_13 AC 41 ms
55,724 KB
testcase_14 AC 41 ms
55,124 KB
testcase_15 AC 49 ms
62,908 KB
testcase_16 AC 49 ms
63,972 KB
testcase_17 AC 87 ms
76,196 KB
testcase_18 AC 84 ms
76,472 KB
testcase_19 AC 101 ms
76,332 KB
testcase_20 AC 91 ms
76,660 KB
testcase_21 AC 93 ms
76,588 KB
testcase_22 AC 40 ms
54,244 KB
testcase_23 AC 47 ms
61,872 KB
testcase_24 AC 49 ms
62,464 KB
testcase_25 AC 41 ms
55,724 KB
testcase_26 AC 87 ms
76,692 KB
testcase_27 AC 112 ms
76,792 KB
testcase_28 AC 85 ms
76,436 KB
testcase_29 AC 84 ms
76,292 KB
testcase_30 AC 59 ms
68,568 KB
testcase_31 AC 70 ms
76,232 KB
testcase_32 AC 81 ms
76,856 KB
testcase_33 AC 40 ms
54,940 KB
testcase_34 AC 77 ms
76,292 KB
testcase_35 AC 61 ms
69,460 KB
testcase_36 AC 57 ms
66,568 KB
testcase_37 AC 62 ms
70,916 KB
testcase_38 AC 82 ms
76,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
A = list(map(lambda x: x-K, A))
dp = defaultdict(int)
dp[0] = 1
MOD = 10**9+7

for i in range(N):
    ndp = defaultdict(int)
    
    for k in dp:
        ndp[k] = (ndp[k]+dp[k])%MOD
        ndp[k+A[i]] = (ndp[k+A[i]]+dp[k])%MOD

    dp = ndp
    
ans = 0

for k in dp:
    if k>=0:
        ans = (ans+dp[k])%MOD

print((ans-1)%MOD)
0