結果

問題 No.2527 H and W
ユーザー playerplayer
提出日時 2023-12-24 19:02:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 137,856 KB
最終ジャッジ日時 2024-09-27 13:45:59
合計ジャッジ時間 9,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
137,344 KB
testcase_01 AC 321 ms
137,856 KB
testcase_02 AC 348 ms
137,812 KB
testcase_03 AC 303 ms
137,276 KB
testcase_04 AC 315 ms
137,524 KB
testcase_05 AC 309 ms
137,472 KB
testcase_06 AC 312 ms
137,728 KB
testcase_07 AC 297 ms
137,728 KB
testcase_08 AC 328 ms
137,504 KB
testcase_09 AC 298 ms
137,424 KB
testcase_10 AC 310 ms
137,548 KB
testcase_11 AC 314 ms
137,472 KB
testcase_12 AC 322 ms
137,728 KB
testcase_13 AC 336 ms
137,472 KB
testcase_14 AC 352 ms
137,600 KB
testcase_15 AC 314 ms
137,556 KB
testcase_16 AC 321 ms
137,804 KB
testcase_17 AC 312 ms
137,552 KB
testcase_18 AC 297 ms
137,468 KB
testcase_19 AC 298 ms
137,736 KB
testcase_20 AC 314 ms
137,496 KB
testcase_21 AC 325 ms
137,520 KB
testcase_22 AC 331 ms
137,536 KB
testcase_23 AC 346 ms
137,512 KB
testcase_24 AC 303 ms
137,468 KB
testcase_25 AC 314 ms
137,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = 10**6 + 1
mod = 998244353
fact = [None] * (x + 1)  # mod(n)での階乗
inv = [None] * (x + 1)  # mod(n)での逆元
fact_inv = [None] * (x + 1)  # mod(n)での階乗の逆元

fact[0] = fact[1] = 1
inv[1] = 1
fact_inv[0] = fact_inv[1] = 1

for i in range(2, x + 1):
    fact[i] = (fact[i - 1] * i) % mod
    inv[i] = (-inv[mod % i] * (mod // i)) % mod
    fact_inv[i] = (fact_inv[i - 1] * inv[i]) % mod


def comb(n, r):
    if r > n:
        return 0
    return (fact[n] * fact_inv[n - r] % mod) * fact_inv[r] % mod


h, w, k = map(int, input().split())

red = h * w - k
ans = 0
for i in range(h + 1):
    if w * i > red:
        break
    num = red - w * i
    if num % (h - i) == 0:
        ww = num // (h - i)
        ans += comb(h, i) * comb(w, ww)
        ans %= mod

print(ans)
0