結果

問題 No.864 四方演算
ユーザー 瀬良奈々葉瀬良奈々葉
提出日時 2024-10-16 15:21:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 445 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 61,504 KB
最終ジャッジ日時 2024-10-16 15:21:52
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,256 KB
testcase_01 AC 56 ms
57,872 KB
testcase_02 AC 52 ms
58,208 KB
testcase_03 AC 52 ms
57,720 KB
testcase_04 AC 55 ms
57,856 KB
testcase_05 AC 50 ms
57,712 KB
testcase_06 AC 56 ms
58,256 KB
testcase_07 AC 55 ms
58,132 KB
testcase_08 AC 51 ms
58,040 KB
testcase_09 AC 49 ms
58,256 KB
testcase_10 AC 47 ms
57,864 KB
testcase_11 AC 45 ms
58,052 KB
testcase_12 AC 52 ms
58,600 KB
testcase_13 AC 54 ms
58,064 KB
testcase_14 AC 44 ms
58,000 KB
testcase_15 AC 55 ms
58,200 KB
testcase_16 AC 53 ms
58,488 KB
testcase_17 AC 55 ms
58,896 KB
testcase_18 AC 58 ms
61,504 KB
testcase_19 AC 52 ms
58,028 KB
testcase_20 AC 56 ms
58,396 KB
testcase_21 AC 53 ms
58,604 KB
testcase_22 AC 52 ms
58,276 KB
testcase_23 AC 44 ms
57,412 KB
testcase_24 AC 51 ms
58,132 KB
testcase_25 AC 47 ms
58,872 KB
testcase_26 AC 52 ms
59,064 KB
testcase_27 AC 39 ms
52,404 KB
testcase_28 AC 38 ms
52,140 KB
testcase_29 AC 39 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []
    i = 1
    while i * i <= n:
        if n % i == 0:
            divisors.append(i)
            j = n // i
            if i != j:
                divisors.append(j)
        i += 1
    return divisors


N = int(input())
K = int(input())

def f(x):
    a = min(x-1, N)
    b = max(1, x-N)
    return max(0, a - b + 1)

ans = 0
for x in make_divisors(K):
    y = K // x
    ans += f(x) * f(y)

print(ans)

0