結果

問題 No.2527 H and W
ユーザー lloyzlloyz
提出日時 2023-11-05 13:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-09-25 22:29:52
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 115 ms
81,664 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 129 ms
82,944 KB
testcase_05 AC 125 ms
82,560 KB
testcase_06 AC 136 ms
83,200 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 114 ms
81,664 KB
testcase_09 AC 114 ms
82,048 KB
testcase_10 AC 116 ms
81,792 KB
testcase_11 AC 127 ms
82,560 KB
testcase_12 AC 123 ms
82,816 KB
testcase_13 AC 129 ms
83,072 KB
testcase_14 AC 113 ms
82,944 KB
testcase_15 AC 122 ms
82,820 KB
testcase_16 AC 109 ms
81,664 KB
testcase_17 AC 114 ms
82,048 KB
testcase_18 AC 116 ms
81,792 KB
testcase_19 AC 80 ms
72,448 KB
testcase_20 AC 86 ms
74,624 KB
testcase_21 AC 117 ms
82,048 KB
testcase_22 AC 115 ms
82,048 KB
testcase_23 AC 116 ms
81,792 KB
testcase_24 AC 84 ms
73,856 KB
testcase_25 AC 101 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

max_ = max(h, w)
fact = [1] * (max_ + 1)
inv = [1] * (max_ + 1)
finv = [1] * (max_ + 1)
for i in range(2, max_ + 1):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod
def comb(x, y):
    return fact[x] * finv[y] % mod * finv[x - y] % mod

f1 = 1
ans = 0
while f1 * f1 <= k:
    if k % f1 == 0:
        f2 = k // f1
        if f1 == f2:
            if f1 <= min(h, w):
                ans += comb(h, f2) * comb(w, f1) % mod
                ans %= mod
        else:
            if f2 <= h and f1 <= w:
                ans += comb(h, f2) * comb(w, f1) % mod
                ans %= mod
            if f2 <= w and f1 <= h:
                ans += comb(w, f2) * comb(h, f1) % mod
                ans %= mod
    f1 += 1
print(ans)
0