結果

問題 No.2164 Equal Balls
ユーザー tassei903tassei903
提出日時 2022-12-15 10:06:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,488 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 258,444 KB
最終ジャッジ日時 2024-11-13 23:39:21
合計ジャッジ時間 115,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
82,232 KB
testcase_01 AC 61 ms
173,712 KB
testcase_02 AC 68 ms
177,388 KB
testcase_03 AC 61 ms
174,736 KB
testcase_04 AC 63 ms
82,144 KB
testcase_05 AC 63 ms
207,028 KB
testcase_06 AC 62 ms
82,816 KB
testcase_07 AC 61 ms
206,564 KB
testcase_08 AC 1,937 ms
222,956 KB
testcase_09 AC 2,835 ms
99,028 KB
testcase_10 AC 353 ms
222,188 KB
testcase_11 TLE -
testcase_12 AC 1,810 ms
222,476 KB
testcase_13 AC 702 ms
222,100 KB
testcase_14 AC 1,383 ms
223,024 KB
testcase_15 TLE -
testcase_16 AC 2,575 ms
92,200 KB
testcase_17 AC 176 ms
85,532 KB
testcase_18 AC 4,353 ms
98,268 KB
testcase_19 TLE -
testcase_20 AC 2,485 ms
92,532 KB
testcase_21 AC 88 ms
82,616 KB
testcase_22 AC 80 ms
83,992 KB
testcase_23 AC 141 ms
121,528 KB
testcase_24 AC 130 ms
106,064 KB
testcase_25 AC 131 ms
117,940 KB
testcase_26 AC 141 ms
92,656 KB
testcase_27 AC 140 ms
110,968 KB
testcase_28 AC 151 ms
111,392 KB
testcase_29 AC 107 ms
99,492 KB
testcase_30 AC 133 ms
111,120 KB
testcase_31 AC 151 ms
122,008 KB
testcase_32 AC 148 ms
114,048 KB
testcase_33 AC 119 ms
111,196 KB
testcase_34 AC 138 ms
120,792 KB
testcase_35 AC 91 ms
93,944 KB
testcase_36 AC 180 ms
123,528 KB
testcase_37 AC 171 ms
126,596 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,695 ms
122,728 KB
testcase_50 AC 1,698 ms
122,920 KB
testcase_51 AC 1,637 ms
127,864 KB
testcase_52 AC 1,642 ms
128,140 KB
testcase_53 AC 1,635 ms
258,444 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 = []


LA = [0] * m
LB = [0] * m
for i in range(m):
    A = []
    B = []
    la = float("inf")
    lb = float("inf")
    for j in range(i, n, m):
        la = min(la, a[j])
        lb = min(lb, b[j])
    LB[i] = lb
    LA[i] = la
S = sum(LB)
dp = [0] * (S+1)
dp[0] = 1
for i in range(m):
    la,lb = LA[i],LB[i]
    op = [1] * (la+lb+1)
    for j in range(i, n, m):
        for k in range(-lb, la+1):
            op[k+lb] *= binom(a[j]+b[j],k+b[j])
            op[k+lb] %= mod
    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