結果

問題 No.2527 H and W
ユーザー 👑 KA37RIKA37RI
提出日時 2023-11-03 22:56:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-09-25 21:18:31
合計ジャッジ時間 11,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

mod = 998244353
h, w, k = [int(x) for x in input().split()]
if h > w:
	h, w = w, h
fc = [1]
for i in range(1, w + 2):
	fc.append(fc[-1] * i % mod)
hw_rem = []
ans = 0
for i in range(1, h + 1):
	if k % i == 0:
		hw_rem.append(i)
for x in hw_rem:
	y = w - k // x
	if y < 0: continue
	a = fc[h] * pow(fc[h-x], mod - 2, mod) * pow(fc[x], mod - 2, mod) % mod
	b = fc[w] * pow(fc[w-y], mod - 2, mod) * pow(fc[y], mod - 2, mod) % mod
	ans += a * b
	ans %= mod
print(ans)
0