結果

問題 No.2527 H and W
ユーザー H20H20
提出日時 2023-11-23 21:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 247,936 KB
最終ジャッジ日時 2024-09-26 08:20:56
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 231 ms
246,512 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 246 ms
247,040 KB
testcase_05 AC 245 ms
246,656 KB
testcase_06 AC 242 ms
247,936 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 226 ms
246,016 KB
testcase_09 AC 230 ms
246,400 KB
testcase_10 AC 225 ms
246,144 KB
testcase_11 AC 237 ms
246,784 KB
testcase_12 AC 235 ms
246,668 KB
testcase_13 AC 236 ms
246,784 KB
testcase_14 AC 229 ms
246,912 KB
testcase_15 AC 240 ms
247,168 KB
testcase_16 AC 223 ms
246,400 KB
testcase_17 AC 227 ms
246,144 KB
testcase_18 AC 230 ms
246,272 KB
testcase_19 AC 155 ms
189,312 KB
testcase_20 AC 172 ms
205,696 KB
testcase_21 AC 278 ms
246,272 KB
testcase_22 AC 238 ms
246,272 KB
testcase_23 AC 224 ms
246,272 KB
testcase_24 AC 168 ms
205,184 KB
testcase_25 AC 196 ms
244,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]


p = 998244353
fact = [1, 1]  # fact[n] = (n! mod p)
factinv = [1, 1]  # factinv[n] = ((n!)^(-1) mod p)
inv = [0, 1]  # factinv 計算用

H,W,K = map(int,input().split())
mod = 998244353
D = make_divisors(K)

def cmb(n, r, p):
    if (r < 0) or (n < r):
        return 0
    r = min(r, n - r)
    return fact[n] * factinv[r] * factinv[n-r] % p

for i in range(2, max(W,H) + 1):
    fact.append((fact[-1] * i) % mod)
    inv.append((-inv[p % i] * (p // i)) % mod)
    factinv.append((factinv[-1] * inv[-1]) % mod)

ans = 0

for d in D:
    if d<=H and K//d<=W:
        ans = (ans + cmb(H,d,mod)*cmb(W,K//d,mod) ) % mod
print(ans)
0