結果

問題 No.1238 選抜クラス
ユーザー platinumplatinum
提出日時 2020-09-08 00:05:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,859 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-11-29 11:35:04
合計ジャッジ時間 37,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
27,264 KB
testcase_01 AC 187 ms
27,520 KB
testcase_02 AC 281 ms
27,392 KB
testcase_03 AC 155 ms
27,264 KB
testcase_04 AC 155 ms
27,392 KB
testcase_05 AC 155 ms
27,392 KB
testcase_06 AC 155 ms
27,264 KB
testcase_07 AC 240 ms
27,648 KB
testcase_08 AC 287 ms
27,392 KB
testcase_09 AC 375 ms
27,264 KB
testcase_10 AC 253 ms
27,392 KB
testcase_11 AC 349 ms
27,520 KB
testcase_12 AC 296 ms
27,520 KB
testcase_13 AC 307 ms
27,520 KB
testcase_14 AC 287 ms
27,648 KB
testcase_15 AC 376 ms
27,392 KB
testcase_16 AC 350 ms
27,392 KB
testcase_17 AC 1,763 ms
32,768 KB
testcase_18 AC 1,634 ms
30,976 KB
testcase_19 AC 1,687 ms
34,816 KB
testcase_20 AC 1,622 ms
33,152 KB
testcase_21 AC 1,573 ms
32,896 KB
testcase_22 AC 1,700 ms
27,392 KB
testcase_23 AC 1,859 ms
27,648 KB
testcase_24 AC 1,740 ms
27,520 KB
testcase_25 AC 1,703 ms
27,648 KB
testcase_26 AC 1,711 ms
32,640 KB
testcase_27 AC 1,708 ms
36,480 KB
testcase_28 AC 1,807 ms
31,872 KB
testcase_29 AC 1,743 ms
31,360 KB
testcase_30 AC 634 ms
27,648 KB
testcase_31 AC 1,032 ms
28,672 KB
testcase_32 AC 1,384 ms
31,360 KB
testcase_33 AC 238 ms
27,520 KB
testcase_34 AC 1,572 ms
30,208 KB
testcase_35 AC 762 ms
27,904 KB
testcase_36 AC 431 ms
27,392 KB
testcase_37 AC 665 ms
27,776 KB
testcase_38 AC 1,695 ms
31,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int,input().split())
A = list(map(int,input().split()))
mod = int(1e9 + 7)

for i in range(N):
	A[i] -= K

dp = [[0 for j in range(20010)] for i in range(105)]
dp[0][10000] = 1
ans = 0

for i in range(N):
	for j in range(20005):
		dp[i+1][j] += dp[i][j]
		if j >= A[i] and j - A[i] < 20005:
			dp[i+1][j] += dp[i][j - A[i]]
		dp[i+1][j] %= mod

for j in range(10005):
	ans += dp[N][j + 10000]
	ans %= mod

ans -= 1
if ans < 0:
	ans += mod
print(ans)
0