結果

問題 No.2527 H and W
ユーザー FromBooskaFromBooska
提出日時 2023-11-04 11:40:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 220,928 KB
最終ジャッジ日時 2024-09-25 21:57:53
合計ジャッジ時間 24,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 1,086 ms
214,144 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 1,108 ms
214,784 KB
testcase_05 AC 1,123 ms
214,656 KB
testcase_06 AC 1,136 ms
220,928 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 1,108 ms
214,400 KB
testcase_09 AC 1,098 ms
213,888 KB
testcase_10 AC 1,085 ms
214,272 KB
testcase_11 AC 1,106 ms
214,784 KB
testcase_12 AC 1,094 ms
214,656 KB
testcase_13 AC 1,088 ms
214,528 KB
testcase_14 AC 1,077 ms
214,656 KB
testcase_15 AC 1,096 ms
214,528 KB
testcase_16 AC 1,088 ms
214,272 KB
testcase_17 AC 1,104 ms
213,888 KB
testcase_18 AC 1,107 ms
214,400 KB
testcase_19 AC 681 ms
146,048 KB
testcase_20 AC 771 ms
157,568 KB
testcase_21 AC 1,103 ms
214,144 KB
testcase_22 AC 1,083 ms
214,272 KB
testcase_23 AC 1,080 ms
213,888 KB
testcase_24 AC 720 ms
156,800 KB
testcase_25 AC 924 ms
182,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Kを約数の積に分解、それぞれの約数をH, Wから選ぶ組合せ数
# nCrメモ化パッケージ、約数列挙

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

# nCrメモ化パッケージ
factorial = [1] #0分
inverse = [1] #0分
for i in range(1, max(H, W)+1):
    factorial.append(factorial[-1]*i%mod)
    inverse.append(pow(factorial[-1], mod-2, mod))
    
def nCr_fast(N, R, MOD):
    if N < R or R < 0:
        return 0
    elif R == 0 or R == N:
        return 1
    return factorial[N]*inverse[R]*inverse[N-R]%MOD

def 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]

ans = 0
divs = divisors(K)
for d1 in divs:
    d2 = K//d1
    calc = nCr_fast(H, d1, mod)*nCr_fast(W, d2, mod)
    calc %= mod
    ans += calc
    ans %= mod
print(ans)
0