結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー 寝癖寝癖
提出日時 2024-07-12 01:26:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 84,700 KB
最終ジャッジ日時 2024-07-12 01:26:27
合計ジャッジ時間 8,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,400 KB
testcase_01 AC 36 ms
52,704 KB
testcase_02 AC 38 ms
52,636 KB
testcase_03 AC 54 ms
63,988 KB
testcase_04 AC 37 ms
53,192 KB
testcase_05 AC 37 ms
53,240 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 618 ms
78,888 KB
testcase_09 AC 232 ms
62,980 KB
testcase_10 AC 37 ms
54,044 KB
testcase_11 AC 38 ms
52,760 KB
testcase_12 AC 36 ms
53,492 KB
testcase_13 AC 37 ms
52,204 KB
testcase_14 AC 37 ms
52,544 KB
testcase_15 AC 79 ms
71,056 KB
testcase_16 AC 48 ms
61,388 KB
testcase_17 AC 91 ms
72,760 KB
testcase_18 AC 79 ms
68,168 KB
testcase_19 AC 77 ms
69,224 KB
testcase_20 AC 264 ms
81,536 KB
testcase_21 AC 218 ms
73,460 KB
testcase_22 AC 209 ms
78,968 KB
testcase_23 AC 282 ms
79,876 KB
testcase_24 AC 341 ms
84,256 KB
testcase_25 AC 252 ms
84,700 KB
testcase_26 AC 256 ms
84,288 KB
testcase_27 AC 218 ms
72,436 KB
testcase_28 AC 286 ms
82,792 KB
testcase_29 AC 399 ms
83,312 KB
testcase_30 AC 272 ms
74,208 KB
testcase_31 AC 556 ms
79,100 KB
testcase_32 AC 302 ms
80,352 KB
testcase_33 AC 209 ms
79,156 KB
testcase_34 AC 314 ms
81,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

M = max(H, W) + 1
fact = [1] * M
inv = [1] * M
for i in range(1, M):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = pow(fact[i], mod - 2, mod)

def comb(n, r):
    if not 0 <= r <= n:
        return 0
    return fact[n] * inv[r] % mod * inv[n - r] % mod

ans = 0
t = 1
k = 1
while t:
    if H*W-(H+W-1+k-1) < 0:
        break
    t = pow(2, H*W-(H+W-1+k-1), mod) * comb(W-1, k//2) * comb(H-2, (k-1)//2)
    if not t:
        break
    ans += t
    ans %= mod
    k += 1

print(ans)
0