結果

問題 No.1238 選抜クラス
ユーザー Kiri8128Kiri8128
提出日時 2020-09-25 22:23:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-28 06:46:27
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,752 KB
testcase_01 AC 40 ms
10,880 KB
testcase_02 AC 55 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 38 ms
10,880 KB
testcase_05 AC 37 ms
10,752 KB
testcase_06 AC 36 ms
10,752 KB
testcase_07 AC 48 ms
10,752 KB
testcase_08 AC 54 ms
10,752 KB
testcase_09 AC 69 ms
10,752 KB
testcase_10 AC 50 ms
10,752 KB
testcase_11 AC 61 ms
10,880 KB
testcase_12 AC 56 ms
10,752 KB
testcase_13 AC 57 ms
10,880 KB
testcase_14 AC 53 ms
10,880 KB
testcase_15 AC 64 ms
10,752 KB
testcase_16 AC 62 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 235 ms
11,392 KB
testcase_20 WA -
testcase_21 AC 221 ms
11,264 KB
testcase_22 WA -
testcase_23 AC 261 ms
11,264 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 242 ms
11,264 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 97 ms
11,264 KB
testcase_31 WA -
testcase_32 AC 214 ms
11,136 KB
testcase_33 AC 50 ms
10,880 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 74 ms
10,624 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = [int(a) - K for a in input().split()]
NE = [-a for a in A if a < 0]
PO = [a for a in A if a > 0]
ze = A.count(0)

M = 10001
POX = [0] * M
POX[0] = 1
for a in PO:
    for i in range(a, M)[::-1]:
        POX[i] += POX[i-a]

NEX = [0] * M
NEX[0] = 1
for a in NE:
    for i in range(a, M)[::-1]:
        NEX[i] += NEX[i-a]

ans = 1
for i in range(1, M):
    NEX[i] += NEX[i-1]
for i in range(1, M):
    ans += POX[i] * NEX[i]
ans *= 2 ** ze
ans -= 1
print(ans)
0