結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー hiro1729hiro1729
提出日時 2023-10-19 17:38:26
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 625 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,360 KB
最終ジャッジ日時 2024-07-11 19:30:32
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,992 KB
testcase_01 AC 48 ms
61,184 KB
testcase_02 AC 49 ms
61,056 KB
testcase_03 AC 58 ms
65,920 KB
testcase_04 AC 49 ms
60,800 KB
testcase_05 AC 52 ms
61,184 KB
testcase_06 AC 48 ms
61,184 KB
testcase_07 AC 48 ms
60,928 KB
testcase_08 RE -
testcase_09 AC 48 ms
61,084 KB
testcase_10 AC 48 ms
61,056 KB
testcase_11 AC 48 ms
61,056 KB
testcase_12 AC 50 ms
61,312 KB
testcase_13 AC 49 ms
61,440 KB
testcase_14 AC 48 ms
61,056 KB
testcase_15 AC 75 ms
72,064 KB
testcase_16 AC 56 ms
65,024 KB
testcase_17 AC 85 ms
74,624 KB
testcase_18 AC 67 ms
68,992 KB
testcase_19 AC 74 ms
71,424 KB
testcase_20 AC 199 ms
80,176 KB
testcase_21 RE -
testcase_22 AC 146 ms
81,360 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 172 ms
79,232 KB
testcase_34 AC 239 ms
79,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 100010
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