結果

問題 No.1238 選抜クラス
ユーザー first_vilfirst_vil
提出日時 2020-09-26 10:26:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-06-28 20:15:46
合計ジャッジ時間 38,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
11,008 KB
testcase_01 AC 88 ms
11,136 KB
testcase_02 AC 204 ms
12,288 KB
testcase_03 AC 49 ms
11,008 KB
testcase_04 AC 50 ms
11,008 KB
testcase_05 AC 49 ms
10,880 KB
testcase_06 AC 49 ms
10,880 KB
testcase_07 AC 145 ms
11,776 KB
testcase_08 AC 201 ms
12,288 KB
testcase_09 AC 299 ms
13,056 KB
testcase_10 AC 155 ms
11,904 KB
testcase_11 AC 268 ms
12,800 KB
testcase_12 AC 217 ms
12,288 KB
testcase_13 AC 222 ms
12,416 KB
testcase_14 AC 207 ms
12,288 KB
testcase_15 AC 288 ms
12,928 KB
testcase_16 AC 281 ms
12,800 KB
testcase_17 AC 1,929 ms
31,872 KB
testcase_18 AC 1,869 ms
30,080 KB
testcase_19 AC 1,951 ms
33,792 KB
testcase_20 AC 1,846 ms
31,744 KB
testcase_21 AC 1,812 ms
31,104 KB
testcase_22 AC 1,910 ms
26,880 KB
testcase_23 AC 1,985 ms
27,008 KB
testcase_24 WA -
testcase_25 TLE -
testcase_26 AC 1,957 ms
32,000 KB
testcase_27 AC 1,977 ms
35,712 KB
testcase_28 AC 1,952 ms
31,232 KB
testcase_29 AC 1,899 ms
30,464 KB
testcase_30 AC 611 ms
15,744 KB
testcase_31 AC 1,087 ms
20,736 KB
testcase_32 AC 1,579 ms
26,880 KB
testcase_33 AC 141 ms
11,904 KB
testcase_34 AC 1,616 ms
27,136 KB
testcase_35 AC 784 ms
17,280 KB
testcase_36 AC 376 ms
13,696 KB
testcase_37 AC 651 ms
16,256 KB
testcase_38 AC 1,851 ms
30,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m=10**9+7
n,k=map(int,input().split())
a=list(map(int,input().split()))
for i in range(n):
  a[i]-=k
dp=[[0]*20001 for _ in range(n+1)]
dp[0][0]=1
for i in range(n):
  for j in range(-10000,10001):
    dp[i][j]%=m
    if -10000<=j+a[i] and j+a[i]<=10000:
      dp[i+1][j]+=dp[i][j]
      dp[i+1][j+a[i]]+=dp[i][j]
print((sum(dp[n][:10000])-1+m)%m)
0