結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー PNJPNJ
提出日時 2024-07-11 20:56:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,232 KB
最終ジャッジ日時 2024-07-11 20:57:08
合計ジャッジ時間 10,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
74,880 KB
testcase_01 AC 80 ms
74,496 KB
testcase_02 AC 113 ms
75,264 KB
testcase_03 AC 112 ms
86,400 KB
testcase_04 AC 80 ms
74,624 KB
testcase_05 AC 81 ms
74,752 KB
testcase_06 AC 80 ms
75,008 KB
testcase_07 AC 80 ms
75,136 KB
testcase_08 AC 603 ms
81,280 KB
testcase_09 AC 87 ms
74,880 KB
testcase_10 AC 81 ms
75,136 KB
testcase_11 AC 81 ms
74,752 KB
testcase_12 AC 83 ms
75,008 KB
testcase_13 AC 82 ms
75,264 KB
testcase_14 AC 83 ms
75,264 KB
testcase_15 AC 140 ms
87,296 KB
testcase_16 AC 104 ms
83,840 KB
testcase_17 AC 156 ms
87,296 KB
testcase_18 AC 141 ms
87,168 KB
testcase_19 AC 141 ms
87,168 KB
testcase_20 AC 346 ms
92,288 KB
testcase_21 AC 321 ms
86,528 KB
testcase_22 AC 278 ms
93,440 KB
testcase_23 AC 457 ms
87,040 KB
testcase_24 AC 411 ms
94,848 KB
testcase_25 AC 347 ms
95,232 KB
testcase_26 AC 365 ms
94,464 KB
testcase_27 AC 360 ms
87,168 KB
testcase_28 AC 367 ms
93,568 KB
testcase_29 AC 480 ms
94,080 KB
testcase_30 AC 388 ms
87,168 KB
testcase_31 AC 583 ms
86,528 KB
testcase_32 AC 455 ms
87,296 KB
testcase_33 AC 251 ms
84,480 KB
testcase_34 AC 385 ms
92,544 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())
if min(H,W) == 1:
  print(1)
  exit()
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