結果

問題 No.1238 選抜クラス
ユーザー timitimi
提出日時 2020-09-27 22:35:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,240 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-06-30 13:57:41
合計ジャッジ時間 24,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
11,392 KB
testcase_01 AC 66 ms
11,520 KB
testcase_02 AC 137 ms
12,416 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 100 ms
12,032 KB
testcase_08 AC 134 ms
12,416 KB
testcase_09 AC 186 ms
13,312 KB
testcase_10 AC 111 ms
12,160 KB
testcase_11 AC 180 ms
13,056 KB
testcase_12 AC 144 ms
12,672 KB
testcase_13 AC 145 ms
12,672 KB
testcase_14 AC 137 ms
12,416 KB
testcase_15 AC 195 ms
13,312 KB
testcase_16 AC 180 ms
13,056 KB
testcase_17 AC 1,168 ms
32,256 KB
testcase_18 AC 1,162 ms
30,208 KB
testcase_19 AC 1,186 ms
34,048 KB
testcase_20 AC 1,134 ms
31,872 KB
testcase_21 AC 1,121 ms
31,360 KB
testcase_22 AC 1,156 ms
27,008 KB
testcase_23 AC 1,155 ms
27,264 KB
testcase_24 AC 1,146 ms
27,136 KB
testcase_25 AC 1,151 ms
27,008 KB
testcase_26 AC 1,175 ms
32,128 KB
testcase_27 AC 1,189 ms
35,968 KB
testcase_28 AC 1,240 ms
31,488 KB
testcase_29 AC 1,138 ms
30,592 KB
testcase_30 AC 382 ms
16,000 KB
testcase_31 AC 693 ms
20,992 KB
testcase_32 AC 959 ms
27,264 KB
testcase_33 AC 98 ms
12,032 KB
testcase_34 AC 998 ms
27,264 KB
testcase_35 AC 460 ms
17,536 KB
testcase_36 AC 236 ms
14,080 KB
testcase_37 AC 393 ms
16,512 KB
testcase_38 AC 1,104 ms
30,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=list(map(int, input().split()))
if N==1:
    if A[0]<K:
        print(0)
        exit()
    else:
        print(1)
        exit()
for i in range(N):
    A[i]-=K 
#print(A)
dp=[[0 for i in range(20200)]for i in range(N+1)]
dp[0][10000]=1
for i in range(N):
    for j in range(20001):
        dp[i+1][j]+=dp[i][j-A[i]]+dp[i][j]
        dp[i+1][j]%=10**9+7
ans=sum(dp[N][10000:])-1
ans%=10**9+7
print(ans)
0