結果

問題 No.2802 Pill Bug in Grid Maze
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-07-12 11:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,872 KB
最終ジャッジ日時 2024-07-12 11:12:25
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 54 ms
65,280 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 616 ms
100,872 KB
testcase_09 AC 37 ms
52,272 KB
testcase_10 AC 36 ms
52,608 KB
testcase_11 AC 36 ms
52,608 KB
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 81 ms
76,928 KB
testcase_16 AC 53 ms
61,440 KB
testcase_17 AC 96 ms
78,720 KB
testcase_18 AC 74 ms
77,568 KB
testcase_19 AC 79 ms
76,672 KB
testcase_20 AC 248 ms
88,576 KB
testcase_21 AC 131 ms
87,968 KB
testcase_22 AC 183 ms
89,216 KB
testcase_23 AC 175 ms
93,292 KB
testcase_24 AC 308 ms
93,416 KB
testcase_25 AC 173 ms
90,092 KB
testcase_26 AC 160 ms
88,512 KB
testcase_27 AC 129 ms
88,064 KB
testcase_28 AC 275 ms
89,324 KB
testcase_29 AC 395 ms
93,432 KB
testcase_30 AC 147 ms
89,708 KB
testcase_31 AC 561 ms
95,860 KB
testcase_32 AC 211 ms
93,800 KB
testcase_33 AC 212 ms
87,168 KB
testcase_34 AC 303 ms
88,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
if h==1 or w==1:
  print(1)
  exit()
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,h+w+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
ans=0
for i in range(1,min(h-1,w-1)+1):
  ans+=pow(2,h*w-(h+w-1)-(2*i-1),M)*fa[h-1-1]*fb[i-1]*fb[h-1-1-(i-1)]*fa[w-1]*fb[i]*fb[w-1-i]
  ans%=M
for i in range(1,min(h-1,w)+1):
  ans+=pow(2,h*w-(h+w-1)-(2*i-2),M)*fa[h-1-1]*fb[i-1]*fb[h-1-1-(i-1)]*fa[w-1]*fb[i-1]*fb[w-1-(i-1)]
  ans%=M
print(ans)
0