結果

問題 No.1238 選抜クラス
ユーザー Kiri8128Kiri8128
提出日時 2020-09-25 22:21:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-28 06:44:55
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,624 KB
testcase_01 AC 41 ms
10,752 KB
testcase_02 AC 54 ms
10,752 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 36 ms
10,624 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 47 ms
10,752 KB
testcase_08 AC 53 ms
10,624 KB
testcase_09 AC 64 ms
10,752 KB
testcase_10 AC 48 ms
10,752 KB
testcase_11 AC 61 ms
10,752 KB
testcase_12 AC 57 ms
10,624 KB
testcase_13 AC 56 ms
10,752 KB
testcase_14 AC 53 ms
10,624 KB
testcase_15 AC 66 ms
10,624 KB
testcase_16 AC 64 ms
10,624 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 247 ms
11,136 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 239 ms
11,264 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 254 ms
11,264 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 98 ms
11,136 KB
testcase_31 WA -
testcase_32 AC 197 ms
11,264 KB
testcase_33 AC 47 ms
10,624 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 77 ms
10,752 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 *= ze + 1
ans -= 1
print(ans)
0