結果

問題 No.1554 array_and_me
ユーザー mkawa2mkawa2
提出日時 2023-11-07 15:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,360 ms / 2,000 ms
コード長 1,566 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 125,440 KB
最終ジャッジ日時 2024-09-25 23:22:42
合計ジャッジ時間 39,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
101,248 KB
testcase_01 AC 691 ms
103,168 KB
testcase_02 AC 672 ms
102,400 KB
testcase_03 AC 661 ms
102,400 KB
testcase_04 AC 677 ms
102,704 KB
testcase_05 AC 686 ms
102,784 KB
testcase_06 AC 1,360 ms
125,312 KB
testcase_07 AC 1,338 ms
125,312 KB
testcase_08 AC 1,303 ms
125,312 KB
testcase_09 AC 1,343 ms
125,312 KB
testcase_10 AC 1,324 ms
125,440 KB
testcase_11 AC 383 ms
125,312 KB
testcase_12 AC 376 ms
125,312 KB
testcase_13 AC 379 ms
125,312 KB
testcase_14 AC 374 ms
125,312 KB
testcase_15 AC 378 ms
125,312 KB
testcase_16 AC 541 ms
102,016 KB
testcase_17 AC 574 ms
102,272 KB
testcase_18 AC 554 ms
102,052 KB
testcase_19 AC 567 ms
101,888 KB
testcase_20 AC 579 ms
102,100 KB
testcase_21 AC 924 ms
102,528 KB
testcase_22 AC 973 ms
102,520 KB
testcase_23 AC 941 ms
102,272 KB
testcase_24 AC 933 ms
102,144 KB
testcase_25 AC 935 ms
103,168 KB
testcase_26 AC 1,205 ms
121,448 KB
testcase_27 AC 1,203 ms
121,068 KB
testcase_28 AC 1,240 ms
122,608 KB
testcase_29 AC 1,207 ms
121,696 KB
testcase_30 AC 1,176 ms
120,536 KB
testcase_31 AC 1,253 ms
122,464 KB
testcase_32 AC 1,192 ms
122,100 KB
testcase_33 AC 1,195 ms
122,352 KB
testcase_34 AC 1,183 ms
120,300 KB
testcase_35 AC 1,189 ms
122,600 KB
testcase_36 AC 1,031 ms
121,576 KB
testcase_37 AC 997 ms
120,660 KB
testcase_38 AC 1,036 ms
120,056 KB
testcase_39 AC 1,038 ms
121,588 KB
testcase_40 AC 1,020 ms
121,196 KB
testcase_41 AC 881 ms
102,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

from heapq import *
from fractions import Fraction

def inv_arr(n):
    if n < 1: return []
    res = [-1, 1]
    for i in range(2, n+1):
        res.append(res[md%i]*(md-md//i)%md)
    return res

inv=inv_arr(100005)

n_max = 100005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

def solve():
    n,k=LI()
    aa=LI()
    xx=[1]*n
    ans=fac[k]*pow(sum(aa),(md-2)*k,md)%md
    hp=[(Fraction(1,a),i) for i,a in enumerate(aa)]
    heapify(hp)
    for _ in range(k):
        f,i=heappop(hp)
        x,a=xx[i],aa[i]
        ans*=a*inv[x]%md
        ans%=md
        heappush(hp,(Fraction(x+1,a),i))
        xx[i] += 1
    print(ans)

for _ in range(II()):solve()
0