結果

問題 No.1554 array_and_me
ユーザー Kiri8128Kiri8128
提出日時 2021-06-18 23:03:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 96,836 KB
最終ジャッジ日時 2024-06-22 21:17:51
合計ジャッジ時間 6,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,688 KB
testcase_01 AC 87 ms
79,452 KB
testcase_02 AC 83 ms
79,260 KB
testcase_03 AC 89 ms
79,216 KB
testcase_04 AC 80 ms
79,236 KB
testcase_05 AC 81 ms
79,144 KB
testcase_06 AC 170 ms
96,560 KB
testcase_07 AC 169 ms
96,780 KB
testcase_08 AC 165 ms
96,608 KB
testcase_09 AC 166 ms
96,688 KB
testcase_10 AC 163 ms
96,836 KB
testcase_11 AC 160 ms
96,552 KB
testcase_12 AC 160 ms
96,568 KB
testcase_13 AC 161 ms
96,672 KB
testcase_14 AC 158 ms
96,476 KB
testcase_15 AC 160 ms
96,752 KB
testcase_16 WA -
testcase_17 AC 44 ms
62,472 KB
testcase_18 AC 42 ms
62,320 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 137 ms
81,592 KB
testcase_27 AC 140 ms
81,688 KB
testcase_28 AC 139 ms
81,300 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 139 ms
81,592 KB
testcase_32 WA -
testcase_33 AC 139 ms
81,736 KB
testcase_34 AC 141 ms
81,868 KB
testcase_35 WA -
testcase_36 AC 116 ms
80,572 KB
testcase_37 AC 116 ms
80,844 KB
testcase_38 AC 120 ms
81,444 KB
testcase_39 AC 125 ms
81,528 KB
testcase_40 AC 119 ms
81,788 KB
testcase_41 AC 88 ms
79,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [K * a // su for a in A]
    su2 = sum(B)
    L = [(A[i] / (B[i] + 1), i) for i in range(N)]
    L.sort(key = lambda x: -x[0])
    for k in range(K - su2):
        i = L[k][1]
        B[i] += 1
    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