結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー hiro1729hiro1729
提出日時 2023-10-19 22:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 83,784 KB
最終ジャッジ日時 2024-07-11 19:30:39
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
62,976 KB
testcase_01 AC 60 ms
63,284 KB
testcase_02 AC 64 ms
63,616 KB
testcase_03 AC 80 ms
68,004 KB
testcase_04 AC 61 ms
63,616 KB
testcase_05 AC 61 ms
63,360 KB
testcase_06 AC 53 ms
63,616 KB
testcase_07 AC 53 ms
63,360 KB
testcase_08 AC 476 ms
80,332 KB
testcase_09 AC 52 ms
63,584 KB
testcase_10 AC 54 ms
63,744 KB
testcase_11 AC 52 ms
63,744 KB
testcase_12 AC 52 ms
63,184 KB
testcase_13 AC 53 ms
63,488 KB
testcase_14 AC 52 ms
63,744 KB
testcase_15 AC 81 ms
74,240 KB
testcase_16 AC 61 ms
67,456 KB
testcase_17 AC 95 ms
76,800 KB
testcase_18 AC 74 ms
71,336 KB
testcase_19 AC 81 ms
73,236 KB
testcase_20 AC 200 ms
82,304 KB
testcase_21 AC 94 ms
75,648 KB
testcase_22 AC 155 ms
83,784 KB
testcase_23 AC 126 ms
80,724 KB
testcase_24 AC 243 ms
83,232 KB
testcase_25 AC 132 ms
83,584 KB
testcase_26 AC 129 ms
83,328 KB
testcase_27 AC 90 ms
74,708 KB
testcase_28 AC 200 ms
82,772 KB
testcase_29 AC 312 ms
83,020 KB
testcase_30 AC 97 ms
77,056 KB
testcase_31 AC 405 ms
80,256 KB
testcase_32 AC 143 ms
81,536 KB
testcase_33 AC 179 ms
81,536 KB
testcase_34 AC 244 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 200010
fac = [0] * (n + 1)
invf = [0] * (n + 1)
inv = [0] * (n + 1)
fac[0] = 1
fac[1] = 1
invf[0] = 1
invf[1] = 1
inv[1] = 1	
for i in range(2, n + 1):
	fac[i] = fac[i - 1] * i % mod
	inv[i] = mod - inv[mod % i] * (mod // i) % mod
	invf[i] = invf[i - 1] * inv[i] % mod
def C(a, b):
	return invf[b] * invf[a - b] * fac[a] % mod
H, W = map(int, input().split())
if H == 1 or W == 1:
	exit(print(1))
mod = 998244353
ans = 0
for i in range(H + W - 2):
	x = i // 2
	y = i // 2 + i % 2
	if x <= H - 2 and y <= W - 1:
		ans += pow(2, (H - 1) * (W - 1) - i, mod) * C(H - 2, x) * C(W - 1, y) % mod
print(ans % mod)
0