結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー PNJPNJ
提出日時 2024-07-11 20:54:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-07-11 20:54:48
合計ジャッジ時間 10,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
74,752 KB
testcase_01 WA -
testcase_02 AC 68 ms
75,520 KB
testcase_03 AC 93 ms
86,796 KB
testcase_04 AC 65 ms
75,136 KB
testcase_05 AC 67 ms
74,624 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 555 ms
81,792 KB
testcase_09 WA -
testcase_10 AC 65 ms
75,520 KB
testcase_11 AC 66 ms
75,392 KB
testcase_12 AC 70 ms
75,136 KB
testcase_13 AC 69 ms
75,392 KB
testcase_14 AC 66 ms
75,264 KB
testcase_15 AC 117 ms
87,488 KB
testcase_16 AC 81 ms
83,988 KB
testcase_17 AC 130 ms
87,936 KB
testcase_18 AC 118 ms
87,168 KB
testcase_19 AC 114 ms
87,040 KB
testcase_20 AC 332 ms
92,228 KB
testcase_21 AC 283 ms
87,168 KB
testcase_22 AC 243 ms
93,696 KB
testcase_23 AC 391 ms
87,040 KB
testcase_24 AC 389 ms
95,104 KB
testcase_25 AC 314 ms
95,360 KB
testcase_26 AC 309 ms
94,592 KB
testcase_27 AC 347 ms
86,912 KB
testcase_28 AC 338 ms
93,904 KB
testcase_29 AC 415 ms
93,968 KB
testcase_30 AC 369 ms
87,424 KB
testcase_31 AC 539 ms
86,356 KB
testcase_32 AC 408 ms
87,552 KB
testcase_33 AC 248 ms
84,144 KB
testcase_34 AC 347 ms
92,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 10**6
fact = [1 for i in range(n+1)]
fact_inv = [1 for i in range(n+1)]
for i in range(1,n+1):
  fact[i] = fact[i-1]*i % mod
fact_inv[-1] = pow(fact[-1],mod-2,mod)
for i in range(n,0,-1):
  fact_inv[i-1] = fact_inv[i]*i % mod
def binom(n,r):
  if n < r or n < 0 or r < 0:
    return 0
  res = fact_inv[n-r] * fact_inv[r] % mod
  res *= fact[n]
  res %= mod
  return res

H,W = map(int,input().split())
ans = 0
for c in range(2,H+W+1):
    h,w = (c + 1) // 2,c // 2
    res = binom(H-2,h-1) * binom(W-2,w-1) % mod
    res = res * pow(2,(H*W - (H + W - 1 + c - 1)) % (mod - 1),mod) % mod
    ans = (ans + res) % mod

    w,h = (c + 1) // 2,c // 2
    res = binom(H-2,h-1) * binom(W-2,w-1) % mod
    res = res * pow(2,(H*W - (H + W - 1 + c - 2)) % (mod - 1),mod) % mod
    ans = (ans + res) % mod

print(ans)
0