結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー hato336hato336
提出日時 2024-10-12 16:31:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,104 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 93,088 KB
最終ジャッジ日時 2024-10-12 16:31:11
合計ジャッジ時間 4,730 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
92,800 KB
testcase_01 AC 112 ms
85,632 KB
testcase_02 AC 274 ms
92,800 KB
testcase_03 AC 114 ms
86,016 KB
testcase_04 AC 275 ms
92,800 KB
testcase_05 AC 281 ms
92,672 KB
testcase_06 AC 294 ms
92,672 KB
testcase_07 AC 285 ms
92,800 KB
testcase_08 AC 120 ms
85,632 KB
testcase_09 AC 271 ms
92,672 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
class comb():
    def __init__(self,n,mod):
        self.fact = [0] * (n+1)
        self.fact_inv = [0] * (n+1)
        self.mod = mod

        self.fact[1] = 1
        self.fact_inv[1] = pow(1,mod-2,mod)
        self.fact[0] = 1
        self.fact_inv[0] = 1

        for i in range(2,n+1):
            self.fact[i] = (self.fact[i-1] * i) % mod
            self.fact_inv[i] = (self.fact_inv[i-1] * pow(i,mod-2,mod)) % mod
    def ncr(self,n,r):
        if n-r < 0:
            return 0
        return (self.fact[n] * self.fact_inv[r] * self.fact_inv[n-r]) % self.mod
    def nhr(self,n,r):
        return self.ncr(n+r-1,r)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
h,w,m = map(int,input().split())
if h-1+w-1+1 > m:
    exit(print(0))
ans = 0
mod = 998244353
c = comb(200000,mod)
ans += c.ncr(m,h-1+w-1+1) * c.ncr(h-1+w-1,h-1) * pow(m,h*w-(h-1+w-1+1),mod)
ans %= mod
print(ans)
0