結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,872 KB
testcase_01 AC 37 ms
52,868 KB
testcase_02 AC 36 ms
52,264 KB
testcase_03 AC 54 ms
65,948 KB
testcase_04 AC 36 ms
52,672 KB
testcase_05 AC 46 ms
52,616 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 640 ms
100,808 KB
testcase_09 AC 109 ms
89,960 KB
testcase_10 AC 37 ms
53,924 KB
testcase_11 AC 37 ms
52,436 KB
testcase_12 AC 36 ms
52,412 KB
testcase_13 AC 43 ms
52,776 KB
testcase_14 AC 37 ms
53,096 KB
testcase_15 AC 84 ms
76,932 KB
testcase_16 AC 44 ms
61,360 KB
testcase_17 AC 94 ms
78,916 KB
testcase_18 AC 74 ms
77,736 KB
testcase_19 AC 80 ms
76,576 KB
testcase_20 AC 244 ms
88,140 KB
testcase_21 AC 128 ms
87,992 KB
testcase_22 AC 182 ms
89,332 KB
testcase_23 AC 190 ms
93,416 KB
testcase_24 AC 308 ms
93,536 KB
testcase_25 AC 173 ms
90,092 KB
testcase_26 AC 160 ms
88,012 KB
testcase_27 AC 128 ms
88,088 KB
testcase_28 AC 251 ms
89,316 KB
testcase_29 AC 406 ms
93,672 KB
testcase_30 AC 144 ms
90,088 KB
testcase_31 AC 535 ms
95,860 KB
testcase_32 AC 218 ms
93,548 KB
testcase_33 AC 210 ms
87,064 KB
testcase_34 AC 308 ms
89,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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