結果

問題 No.1238 選抜クラス
ユーザー timitimi
提出日時 2020-09-27 22:34:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-06-30 13:55:21
合計ジャッジ時間 18,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
11,392 KB
testcase_01 AC 59 ms
11,520 KB
testcase_02 AC 111 ms
12,288 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 80 ms
12,032 KB
testcase_08 AC 105 ms
12,288 KB
testcase_09 AC 146 ms
13,184 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 AC 139 ms
12,928 KB
testcase_12 AC 114 ms
12,544 KB
testcase_13 AC 111 ms
12,544 KB
testcase_14 AC 103 ms
12,544 KB
testcase_15 AC 145 ms
13,312 KB
testcase_16 AC 135 ms
12,928 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 899 ms
36,608 KB
testcase_20 WA -
testcase_21 AC 800 ms
33,024 KB
testcase_22 WA -
testcase_23 AC 868 ms
27,136 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 936 ms
39,040 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 291 ms
16,000 KB
testcase_31 WA -
testcase_32 AC 670 ms
28,416 KB
testcase_33 AC 81 ms
12,160 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 183 ms
13,824 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
print(sum(dp[N][10000:])-1)
0