結果
問題 | No.2164 Equal Balls |
ユーザー | tassei903 |
提出日時 | 2022-12-15 10:06:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,488 bytes |
コンパイル時間 | 262 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 105,980 KB |
最終ジャッジ日時 | 2024-04-26 12:27:22 |
合計ジャッジ時間 | 13,338 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
75,008 KB |
testcase_01 | AC | 64 ms
74,496 KB |
testcase_02 | AC | 72 ms
77,696 KB |
testcase_03 | AC | 63 ms
74,624 KB |
testcase_04 | AC | 64 ms
74,880 KB |
testcase_05 | AC | 66 ms
76,416 KB |
testcase_06 | AC | 64 ms
75,136 KB |
testcase_07 | AC | 64 ms
74,752 KB |
testcase_08 | AC | 1,952 ms
92,032 KB |
testcase_09 | AC | 2,851 ms
91,676 KB |
testcase_10 | AC | 357 ms
91,904 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 | -- | - |
ソースコード
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])