結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 111 ms
81,920 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 126 ms
82,816 KB
testcase_05 AC 126 ms
82,432 KB
testcase_06 AC 129 ms
83,476 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 105 ms
81,920 KB
testcase_09 AC 107 ms
81,920 KB
testcase_10 AC 106 ms
81,792 KB
testcase_11 AC 123 ms
82,432 KB
testcase_12 AC 120 ms
82,688 KB
testcase_13 AC 124 ms
82,944 KB
testcase_14 AC 115 ms
82,560 KB
testcase_15 AC 122 ms
82,432 KB
testcase_16 AC 118 ms
81,792 KB
testcase_17 AC 110 ms
82,176 KB
testcase_18 AC 110 ms
81,664 KB
testcase_19 AC 79 ms
72,764 KB
testcase_20 AC 87 ms
74,752 KB
testcase_21 AC 112 ms
81,920 KB
testcase_22 AC 112 ms
81,976 KB
testcase_23 AC 110 ms
81,920 KB
testcase_24 AC 86 ms
73,472 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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 and 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