結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー hiro1729hiro1729
提出日時 2023-10-20 07:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-07-11 19:30:54
合計ジャッジ時間 7,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 64 ms
63,488 KB
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 843 ms
75,520 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 43 ms
51,712 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
51,712 KB
testcase_13 AC 43 ms
51,968 KB
testcase_14 AC 44 ms
51,712 KB
testcase_15 AC 104 ms
68,224 KB
testcase_16 AC 56 ms
61,440 KB
testcase_17 AC 120 ms
69,760 KB
testcase_18 AC 83 ms
65,920 KB
testcase_19 AC 95 ms
67,712 KB
testcase_20 AC 327 ms
75,392 KB
testcase_21 AC 117 ms
70,400 KB
testcase_22 AC 229 ms
75,392 KB
testcase_23 AC 168 ms
75,776 KB
testcase_24 AC 391 ms
75,648 KB
testcase_25 AC 177 ms
75,392 KB
testcase_26 AC 162 ms
73,984 KB
testcase_27 AC 106 ms
68,224 KB
testcase_28 AC 319 ms
75,776 KB
testcase_29 AC 533 ms
75,392 KB
testcase_30 AC 120 ms
69,376 KB
testcase_31 AC 711 ms
75,520 KB
testcase_32 AC 212 ms
75,520 KB
testcase_33 AC 285 ms
75,776 KB
testcase_34 AC 417 ms
75,520 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 - x - 1) * pow(x, mod - 2, mod) % mod
		else:
			if y:
				cw = cw * (W - y) * pow(y, mod - 2, mod) % mod
		ans += pow(2, (H - 1) * (W - 1) - i, mod) * ch * cw % mod
print(ans % mod)
0