結果

問題 No.1554 array_and_me
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-19 15:08:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 113,128 KB
最終ジャッジ日時 2024-06-22 22:04:56
合計ジャッジ時間 18,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
81,568 KB
testcase_01 AC 266 ms
95,568 KB
testcase_02 AC 266 ms
95,152 KB
testcase_03 AC 260 ms
94,876 KB
testcase_04 AC 259 ms
95,200 KB
testcase_05 AC 253 ms
95,448 KB
testcase_06 AC 685 ms
112,764 KB
testcase_07 AC 676 ms
112,936 KB
testcase_08 AC 665 ms
112,888 KB
testcase_09 AC 682 ms
113,128 KB
testcase_10 AC 682 ms
112,764 KB
testcase_11 AC 156 ms
112,868 KB
testcase_12 AC 150 ms
112,628 KB
testcase_13 AC 152 ms
112,716 KB
testcase_14 AC 149 ms
112,672 KB
testcase_15 AC 151 ms
112,636 KB
testcase_16 AC 176 ms
95,316 KB
testcase_17 AC 169 ms
95,428 KB
testcase_18 AC 169 ms
95,060 KB
testcase_19 AC 180 ms
95,312 KB
testcase_20 AC 175 ms
95,376 KB
testcase_21 AC 421 ms
94,708 KB
testcase_22 AC 414 ms
94,416 KB
testcase_23 AC 420 ms
95,236 KB
testcase_24 AC 414 ms
94,984 KB
testcase_25 AC 423 ms
94,648 KB
testcase_26 AC 556 ms
98,092 KB
testcase_27 AC 561 ms
97,864 KB
testcase_28 AC 574 ms
98,660 KB
testcase_29 AC 556 ms
97,204 KB
testcase_30 AC 554 ms
98,376 KB
testcase_31 AC 556 ms
97,580 KB
testcase_32 AC 564 ms
98,116 KB
testcase_33 AC 569 ms
97,364 KB
testcase_34 AC 564 ms
97,968 KB
testcase_35 AC 578 ms
97,872 KB
testcase_36 AC 418 ms
95,552 KB
testcase_37 AC 408 ms
96,520 KB
testcase_38 AC 413 ms
96,844 KB
testcase_39 AC 402 ms
95,976 KB
testcase_40 AC 405 ms
96,580 KB
testcase_41 AC 295 ms
94,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
mod = 998244353
fact = [1,1]
finv = [1,1]
inv = [0,1]
 
for i in range(2,10**5+5):
    fact.append((fact[-1]*i)%mod)
    inv.append((inv[mod%i]*(mod-mod//i))%mod)
    finv.append((finv[-1]*inv[-1])%mod)
def solve():
    n,k = map(int,input().split())
    A = list(map(int,input().split()))
    X = [0]*n
    h = [[-a,i] for i,a in enumerate(A)]
    heapify(h)
    for _ in range(k):
        v,i = heappop(h)
        X[i] += 1
        heappush(h,[-A[i]/(X[i]+1),i])
    
    ans = fact[k]
    for i,(x,a) in enumerate(zip(X,A)):
        ans *= pow(a,x,mod)*finv[x]%mod
        ans %= mod
    base = pow(sum(A),k,mod)
    ans *= pow(base,mod-2,mod)
    ans %= mod
    print(ans)

t = int(input())
for _ in range(t):
    solve()

0