結果

問題 No.2164 Equal Balls
ユーザー tassei903tassei903
提出日時 2022-12-15 10:00:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,413 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 280,632 KB
最終ジャッジ日時 2024-11-13 23:32:13
合計ジャッジ時間 116,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
175,548 KB
testcase_01 AC 61 ms
83,340 KB
testcase_02 AC 70 ms
178,440 KB
testcase_03 AC 60 ms
174,932 KB
testcase_04 AC 62 ms
83,820 KB
testcase_05 AC 65 ms
205,564 KB
testcase_06 AC 61 ms
82,484 KB
testcase_07 AC 61 ms
204,148 KB
testcase_08 AC 1,868 ms
220,676 KB
testcase_09 AC 2,645 ms
220,432 KB
testcase_10 AC 341 ms
219,988 KB
testcase_11 TLE -
testcase_12 AC 1,730 ms
220,644 KB
testcase_13 AC 664 ms
99,024 KB
testcase_14 AC 1,328 ms
220,928 KB
testcase_15 TLE -
testcase_16 AC 2,598 ms
92,888 KB
testcase_17 AC 172 ms
88,604 KB
testcase_18 AC 4,062 ms
98,088 KB
testcase_19 TLE -
testcase_20 AC 2,382 ms
92,344 KB
testcase_21 AC 91 ms
85,460 KB
testcase_22 AC 83 ms
84,856 KB
testcase_23 AC 168 ms
121,284 KB
testcase_24 AC 145 ms
106,224 KB
testcase_25 AC 148 ms
117,952 KB
testcase_26 AC 143 ms
92,620 KB
testcase_27 AC 152 ms
110,820 KB
testcase_28 AC 150 ms
111,296 KB
testcase_29 AC 113 ms
99,852 KB
testcase_30 AC 145 ms
111,472 KB
testcase_31 AC 171 ms
122,008 KB
testcase_32 AC 160 ms
114,620 KB
testcase_33 AC 133 ms
111,032 KB
testcase_34 AC 160 ms
121,052 KB
testcase_35 AC 102 ms
93,988 KB
testcase_36 AC 193 ms
123,568 KB
testcase_37 AC 188 ms
126,860 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 1,660 ms
154,756 KB
testcase_50 AC 1,661 ms
154,832 KB
testcase_51 AC 1,711 ms
143,840 KB
testcase_52 AC 1,708 ms
143,592 KB
testcase_53 AC 1,695 ms
280,632 KB
権限があれば一括ダウンロードができます

ソースコード

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