結果

問題 No.1554 array_and_me
ユーザー tamatotamato
提出日時 2021-06-18 23:14:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 93,600 KB
最終ジャッジ日時 2023-09-05 00:10:28
合計ジャッジ時間 13,439 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
78,320 KB
testcase_01 AC 312 ms
83,112 KB
testcase_02 AC 305 ms
83,088 KB
testcase_03 AC 307 ms
83,132 KB
testcase_04 AC 307 ms
83,216 KB
testcase_05 AC 318 ms
83,444 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 149 ms
93,412 KB
testcase_12 AC 146 ms
93,284 KB
testcase_13 AC 150 ms
93,220 KB
testcase_14 AC 152 ms
93,480 KB
testcase_15 AC 149 ms
93,020 KB
testcase_16 AC 175 ms
80,436 KB
testcase_17 AC 174 ms
80,996 KB
testcase_18 AC 178 ms
80,496 KB
testcase_19 AC 180 ms
80,404 KB
testcase_20 AC 174 ms
80,496 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 316 ms
89,088 KB
testcase_37 AC 309 ms
89,612 KB
testcase_38 AC 308 ms
88,380 KB
testcase_39 AC 311 ms
89,164 KB
testcase_40 AC 316 ms
89,288 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    from heapq import heappop, heappush
    input = sys.stdin.readline

    # comb init
    nmax = 10 ** 5 + 10  # change here
    fac = [0] * nmax
    finv = [0] * nmax
    inv = [0] * nmax
    fac[0] = 1
    fac[1] = 1
    finv[0] = 1
    finv[1] = 1
    inv[1] = 1
    for i in range(2, nmax):
        fac[i] = fac[i - 1] * i % mod
        inv[i] = mod - inv[mod % i] * (mod // i) % mod
        finv[i] = finv[i - 1] * inv[i] % mod

    def comb(n, r):
        if n < r:
            return 0
        else:
            return (fac[n] * ((finv[r] * finv[n - r]) % mod)) % mod

    for _ in range(int(input())):
        N, K = map(int, input().split())
        A = list(map(int, input().split()))

        S = sum(A)
        B = [0] * N
        pq = []
        for i in range(N):
            heappush(pq, (-A[i] * K, i))
        for _ in range(K):
            v, i = heappop(pq)
            B[i] += 1
            heappush(pq, (-A[i] * (1 / (B[i] + 1)), i))
        S_inv = pow(S, mod-2, mod)
        T = K
        ans = 1
        for i in range(N):
            ans = (ans * pow((A[i] * S_inv)%mod, B[i], mod))%mod
            ans = (ans * comb(T, B[i]))%mod
            T -= B[i]
        print(ans)
        assert T == 0


if __name__ == '__main__':
    main()
0