結果

問題 No.2043 Ohuton and Makura
ユーザー Sigma_ArfSigma_Arf
提出日時 2022-08-19 21:59:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 493 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 82,876 KB
最終ジャッジ日時 2024-10-08 08:38:07
合計ジャッジ時間 9,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,908 KB
testcase_01 AC 37 ms
53,268 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,S=map(int,input().split())
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]
x=0
for j in range(1,S+1):
    T=make_divisors(j)
    for i in range(len(T)):
        a=T[i]
        b=j//T[i]
        c=max(0,A-a+1)*max(0,B-b+1)
        x+=c
print(x)
0