結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 55 ms
63,616 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 800 ms
75,956 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 37 ms
52,032 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 89 ms
68,352 KB
testcase_16 AC 47 ms
61,440 KB
testcase_17 AC 107 ms
69,888 KB
testcase_18 AC 71 ms
66,048 KB
testcase_19 AC 84 ms
67,584 KB
testcase_20 AC 301 ms
75,692 KB
testcase_21 AC 105 ms
70,528 KB
testcase_22 AC 211 ms
75,648 KB
testcase_23 AC 155 ms
75,832 KB
testcase_24 AC 364 ms
75,988 KB
testcase_25 AC 163 ms
75,768 KB
testcase_26 AC 148 ms
74,112 KB
testcase_27 AC 93 ms
68,120 KB
testcase_28 AC 297 ms
75,792 KB
testcase_29 AC 499 ms
75,648 KB
testcase_30 AC 108 ms
69,888 KB
testcase_31 AC 682 ms
75,520 KB
testcase_32 AC 198 ms
75,648 KB
testcase_33 AC 265 ms
75,520 KB
testcase_34 AC 385 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
if H == 1 or W == 1:
	exit(print(1))
mod = 998244353
ans = 0
ch = 1
cw = 1
for i in range(H + W - 2):
	x = i // 2
	y = i // 2 + i % 2
	if x <= H - 2 and y <= W - 1:
		if x == y:
			if x:
				ch = ch * (H - 2 - x + 1) * pow(x, mod - 2, mod) % mod
		else:
			if y:
				cw = cw * (W - 1 - y + 1) * pow(y, mod - 2, mod) % mod
		ans += pow(2, (H - 1) * (W - 1) - i, mod) * ch * cw % mod
print(ans % mod)
0