結果

問題 No.1554 array_and_me
ユーザー Kiri8128Kiri8128
提出日時 2021-06-18 23:07:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 95,076 KB
最終ジャッジ日時 2024-06-22 21:20:28
合計ジャッジ時間 11,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,080 KB
testcase_01 AC 200 ms
80,756 KB
testcase_02 AC 200 ms
80,992 KB
testcase_03 AC 208 ms
81,076 KB
testcase_04 AC 195 ms
81,296 KB
testcase_05 AC 195 ms
81,376 KB
testcase_06 AC 333 ms
94,388 KB
testcase_07 AC 329 ms
94,912 KB
testcase_08 AC 345 ms
95,076 KB
testcase_09 AC 356 ms
94,336 KB
testcase_10 AC 341 ms
94,768 KB
testcase_11 AC 125 ms
89,656 KB
testcase_12 AC 116 ms
88,320 KB
testcase_13 AC 132 ms
90,036 KB
testcase_14 AC 122 ms
88,136 KB
testcase_15 AC 123 ms
88,320 KB
testcase_16 AC 53 ms
62,720 KB
testcase_17 AC 53 ms
62,976 KB
testcase_18 AC 57 ms
62,976 KB
testcase_19 AC 54 ms
62,592 KB
testcase_20 AC 52 ms
62,720 KB
testcase_21 AC 245 ms
82,300 KB
testcase_22 AC 260 ms
82,164 KB
testcase_23 AC 266 ms
81,916 KB
testcase_24 AC 270 ms
82,080 KB
testcase_25 AC 247 ms
81,028 KB
testcase_26 AC 305 ms
90,144 KB
testcase_27 AC 366 ms
91,732 KB
testcase_28 AC 364 ms
92,180 KB
testcase_29 AC 306 ms
90,136 KB
testcase_30 AC 309 ms
90,256 KB
testcase_31 AC 327 ms
89,732 KB
testcase_32 AC 350 ms
91,684 KB
testcase_33 AC 356 ms
91,960 KB
testcase_34 AC 303 ms
89,828 KB
testcase_35 AC 313 ms
90,340 KB
testcase_36 AC 313 ms
91,044 KB
testcase_37 AC 314 ms
90,368 KB
testcase_38 AC 303 ms
89,292 KB
testcase_39 AC 327 ms
90,972 KB
testcase_40 AC 322 ms
88,972 KB
testcase_41 AC 208 ms
80,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
P = 998244353
nn = 202020

fa = [1] * (nn+1)
fainv = [1] * (nn+1)
for i in range(nn):
    fa[i+1] = fa[i] * (i+1) % P
fainv[-1] = pow(fa[-1], P-2, P)
for i in range(nn)[::-1]:
    fainv[i] = fainv[i+1] * (i+1) % P

C = lambda a, b: fa[a] * fainv[b] % P * fainv[a-b] % P if 0 <= b <= a else 0

T = int(input())
for _ in range(T):
    N, K = map(int, input().split())
    A = [int(a) for a in input().split()]
    su = sum(A)
    B = [max(K * a // su - 1, 0) for a in A]
    su2 = sum(B)
    
    H = []
    for i in range(N):
        heappush(H, (-A[i] / (B[i] + 1), i))
    for k in range(K - su2):
        a, i = heappop(H)
        B[i] += 1
        heappush(H, (-A[i] / (B[i] + 1), i))

    ans = fa[K]
    for i, b in enumerate(B):
        ans = ans * fainv[b] % P * pow(A[i], b, P) % P
    ans = ans * pow(su, (P - 2) * K, P) % P
    print(ans)
0