結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー mitu24472mitu24472
提出日時 2023-10-26 22:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 128,128 KB
最終ジャッジ日時 2024-07-11 19:31:24
合計ジャッジ時間 13,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
104,704 KB
testcase_01 AC 229 ms
104,960 KB
testcase_02 AC 225 ms
105,088 KB
testcase_03 AC 260 ms
108,288 KB
testcase_04 AC 246 ms
104,960 KB
testcase_05 AC 259 ms
105,216 KB
testcase_06 AC 267 ms
104,960 KB
testcase_07 AC 259 ms
105,344 KB
testcase_08 AC 656 ms
121,856 KB
testcase_09 AC 252 ms
104,960 KB
testcase_10 AC 259 ms
104,832 KB
testcase_11 AC 259 ms
104,448 KB
testcase_12 AC 261 ms
105,088 KB
testcase_13 AC 264 ms
105,344 KB
testcase_14 AC 257 ms
104,832 KB
testcase_15 AC 286 ms
113,664 KB
testcase_16 AC 276 ms
108,160 KB
testcase_17 AC 299 ms
115,584 KB
testcase_18 AC 279 ms
111,488 KB
testcase_19 AC 287 ms
113,152 KB
testcase_20 AC 403 ms
126,592 KB
testcase_21 AC 295 ms
114,176 KB
testcase_22 AC 356 ms
123,904 KB
testcase_23 AC 322 ms
120,704 KB
testcase_24 AC 437 ms
128,128 KB
testcase_25 AC 333 ms
127,488 KB
testcase_26 AC 331 ms
125,952 KB
testcase_27 AC 282 ms
113,152 KB
testcase_28 AC 399 ms
127,104 KB
testcase_29 AC 503 ms
127,872 KB
testcase_30 AC 302 ms
115,584 KB
testcase_31 AC 587 ms
122,368 KB
testcase_32 AC 349 ms
123,520 KB
testcase_33 AC 392 ms
124,672 KB
testcase_34 AC 442 ms
126,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
# nCk 用の前計算
fact = [0]*2000000
inv = [0]*2000000
fact_inv = [0]*2000000
fact[0] = 1 
fact[1] = 1
inv[1] = 1
fact_inv[0] = 1
fact_inv[1] = 1
for i in range(2,2000000):
    fact[i] = fact[i-1] * i % mod
    inv[i] = mod - inv[mod%i] * (mod//i)%mod
    fact_inv[i] = fact_inv[i-1] * inv[i]%mod
def nCk(n,k):
    return fact[n] * (fact_inv[k] * fact_inv[n - k] % mod) % mod
H, W = map(int,input().split())
if H == 1 or W == 1:
    print(1)
else:
    ans = 0
    for i in range(min(H*2-2,W*2-1)):
        ans += pow(2,(H-1)*(W-1)-i,mod) * nCk(W-1,(i+1)//2) * nCk(H-2,i//2)
        ans %= mod
    print(ans)
0