結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー loop0919loop0919
提出日時 2023-10-19 21:46:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-07-11 19:30:35
合計ジャッジ時間 8,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 38 ms
51,584 KB
testcase_05 WA -
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 253 ms
89,472 KB
testcase_08 AC 683 ms
103,296 KB
testcase_09 AC 253 ms
89,728 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,224 KB
testcase_12 WA -
testcase_13 AC 39 ms
51,968 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 239 ms
94,848 KB
testcase_22 AC 220 ms
88,064 KB
testcase_23 AC 310 ms
103,424 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 607 ms
103,040 KB
testcase_32 AC 332 ms
103,680 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
H, W = map(int, input().split())

# 階乗とその逆元を前計算する.
facts = [1]
inv_facts = [1]
for i in range(1, max(H - 1, W)):
    facts.append(facts[i-1] * i % MOD)
    inv_facts.append(inv_facts[i-1] * pow(i, MOD-2, MOD) % MOD)

# nCr を計算する.
def comb(n, r):
    return facts[n] * inv_facts[n-r] * inv_facts[r] % MOD

if H == 1 or W == 1:
	print(1)
	exit()

ans = 0
for i in range(min(2*H - 2, 2*W - 2)):
    x = i // 2
    y = (i + 1) // 2
    
    ans += pow(2, (H - 1) * (W - 1) - i, MOD) * comb(H - 2, x) * comb(W - 1, y) % MOD
    ans %= MOD

print(ans)
0