結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー tassei903tassei903
提出日時 2024-10-12 16:22:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 937 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 205,612 KB
最終ジャッジ日時 2024-10-12 16:23:08
合計ジャッジ時間 6,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
67,080 KB
testcase_01 AC 45 ms
60,192 KB
testcase_02 AC 1,897 ms
156,256 KB
testcase_03 AC 45 ms
60,924 KB
testcase_04 AC 44 ms
61,700 KB
testcase_05 AC 44 ms
60,960 KB
testcase_06 AC 121 ms
78,532 KB
testcase_07 AC 371 ms
89,256 KB
testcase_08 AC 44 ms
61,252 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
nn = 100000
fact = [1] * nn
for i in range(nn - 1):
    fact[i + 1] = fact[i] * (i + 1) % mod
invfact = [1] * nn
invfact[nn - 1] = pow(fact[nn - 1], mod - 2, mod)
for i in range(nn - 1)[::-1]:
    invfact[i] = invfact[i + 1] * (i + 1) % mod
 
def binom(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * invfact[y] % mod * invfact[x - y] % mod

h, w, m = na()

if m < h + w - 1:
    print(0)
    exit()
res = 1
for i in range(h + w - 1):
    res *= m - i

print(binom(h+w-2, h-1) * res * invfact[h+w-1] * pow(m, h * w - h - w + 1) % mod)
0