結果

問題 No.2164 Equal Balls
ユーザー tassei903tassei903
提出日時 2022-12-15 10:00:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,413 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 106,364 KB
最終ジャッジ日時 2024-04-26 12:22:09
合計ジャッジ時間 12,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
74,624 KB
testcase_01 AC 71 ms
74,496 KB
testcase_02 AC 80 ms
77,824 KB
testcase_03 AC 72 ms
74,240 KB
testcase_04 AC 73 ms
75,136 KB
testcase_05 AC 80 ms
76,032 KB
testcase_06 AC 72 ms
75,264 KB
testcase_07 AC 69 ms
74,880 KB
testcase_08 AC 1,850 ms
92,512 KB
testcase_09 AC 2,615 ms
92,384 KB
testcase_10 AC 359 ms
91,776 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
nn = 10**6
fact = [1] * nn
for i in range(nn - 1):
    fact[i + 1] = fact[i] * (i + 1) % mod
invfact = [1] * nn
invfact[nn - 1] = pow(fact[nn - 1], mod - 2, mod)
for i in range(nn - 1)[::-1]:
    invfact[i] = invfact[i + 1] * (i + 1) % mod
 
def binom(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * invfact[y] % mod * invfact[x - y] % mod

n, m = na()

a = na()
b = na()
f = []
S = 0
for i in range(m):
    A = []
    B = []
    for j in range(i, n, m):
        A.append(a[j])
        B.append(b[j])
    N = len(A)
    la = min(A)
    lb = min(B)
    S += lb
    dp = [1] * (la+lb+1)
    for j in range(N):
        for k in range(-lb, la+1):
            dp[k+lb] *= binom(A[j]+B[j],k+B[j])
            dp[k+lb] %= mod
    f.append(dp)

dp = [0] * (S+1)
dp[0] = 1
for op in f:
    ndp = [0] * (S+1)
    dp, ndp = ndp, dp
    for i in range(S+1):
        for j, x in enumerate(op):
            if j + i > S:
                break
            dp[j+i] += ndp[i] * x % mod
            dp[j+i] %= mod

print(dp[-1])
0