結果

問題 No.864 四方演算
ユーザー etdvucur8oetdvucur8o
提出日時 2024-07-14 04:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 448 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 62,140 KB
最終ジャッジ日時 2024-07-14 04:40:27
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,904 KB
testcase_01 AC 52 ms
58,092 KB
testcase_02 AC 48 ms
58,016 KB
testcase_03 AC 50 ms
57,880 KB
testcase_04 AC 50 ms
59,148 KB
testcase_05 AC 46 ms
57,124 KB
testcase_06 AC 51 ms
57,348 KB
testcase_07 AC 48 ms
58,528 KB
testcase_08 AC 47 ms
58,104 KB
testcase_09 AC 44 ms
58,736 KB
testcase_10 AC 43 ms
57,420 KB
testcase_11 AC 40 ms
57,528 KB
testcase_12 AC 48 ms
58,176 KB
testcase_13 AC 59 ms
58,932 KB
testcase_14 AC 39 ms
57,980 KB
testcase_15 AC 50 ms
57,632 KB
testcase_16 AC 47 ms
58,588 KB
testcase_17 AC 51 ms
58,592 KB
testcase_18 AC 54 ms
62,140 KB
testcase_19 AC 45 ms
57,804 KB
testcase_20 AC 52 ms
58,200 KB
testcase_21 AC 54 ms
58,424 KB
testcase_22 AC 48 ms
58,352 KB
testcase_23 AC 38 ms
58,132 KB
testcase_24 AC 44 ms
58,040 KB
testcase_25 AC 41 ms
57,448 KB
testcase_26 AC 46 ms
59,644 KB
testcase_27 AC 34 ms
52,088 KB
testcase_28 AC 34 ms
52,780 KB
testcase_29 AC 35 ms
52,404 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



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


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

print(ans)
0