結果
問題 | No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど??? |
ユーザー | Tamiji153 |
提出日時 | 2024-11-30 13:01:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 294 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 115,328 KB |
最終ジャッジ日時 | 2024-11-30 13:02:02 |
合計ジャッジ時間 | 16,404 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
56,832 KB |
testcase_01 | AC | 42 ms
109,056 KB |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
108,800 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 42 ms
57,216 KB |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
ソースコード
mod=998244353 h,w,m=map(int,input().split()) if m<h+w-1: print(0) exit() def fact(x): ret=1 for i in range(1,x+1): ret=(ret*i)%mod return ret C=fact(h+w-2)*pow(fact(h-1)*fact(w-1),-1,mod) D=fact(h+w-1)*pow(fact(m)*fact(h-w-1-m),-1,mod) ans=C*D*pow(3,h*w-(h+w-1),mod)%998244353 print(ans)