結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 65 ms
65,408 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 676 ms
100,616 KB
testcase_09 AC 122 ms
89,836 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 87 ms
76,928 KB
testcase_16 AC 52 ms
61,056 KB
testcase_17 AC 100 ms
78,976 KB
testcase_18 AC 79 ms
77,824 KB
testcase_19 AC 85 ms
76,544 KB
testcase_20 AC 261 ms
88,132 KB
testcase_21 AC 151 ms
88,064 KB
testcase_22 AC 194 ms
89,324 KB
testcase_23 AC 193 ms
93,800 KB
testcase_24 AC 322 ms
93,540 KB
testcase_25 AC 187 ms
90,088 KB
testcase_26 AC 182 ms
88,072 KB
testcase_27 AC 138 ms
88,084 KB
testcase_28 AC 265 ms
89,060 KB
testcase_29 AC 409 ms
93,800 KB
testcase_30 AC 158 ms
90,212 KB
testcase_31 AC 574 ms
96,180 KB
testcase_32 AC 215 ms
93,920 KB
testcase_33 AC 219 ms
87,168 KB
testcase_34 AC 324 ms
88,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
if (h,w)==(1,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