結果
問題 | No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど??? |
ユーザー | hato336 |
提出日時 | 2024-10-12 16:33:03 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,222 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 93,444 KB |
最終ジャッジ日時 | 2024-10-12 16:33:08 |
合計ジャッジ時間 | 4,768 ms |
ジャッジサーバーID (参考情報) |
judge / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 282 ms
92,972 KB |
testcase_01 | AC | 116 ms
85,632 KB |
testcase_02 | AC | 286 ms
92,912 KB |
testcase_03 | AC | 109 ms
85,728 KB |
testcase_04 | AC | 276 ms
92,632 KB |
testcase_05 | AC | 294 ms
92,560 KB |
testcase_06 | AC | 280 ms
92,672 KB |
testcase_07 | AC | 285 ms
93,004 KB |
testcase_08 | AC | 114 ms
85,684 KB |
testcase_09 | AC | 287 ms
93,224 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
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) z = 1 mm = m for i in range(h-1+w-1+1): z *= mm mm -= 1 z %= mod z *= pow(i+1,mod-2,mod) z %= 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)