結果

問題 No.864 四方演算
ユーザー kumatan400kumatan400
提出日時 2023-03-18 13:03:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 450 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 61,176 KB
最終ジャッジ日時 2024-09-18 13:15:23
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,192 KB
testcase_01 AC 49 ms
58,184 KB
testcase_02 AC 44 ms
58,460 KB
testcase_03 AC 47 ms
58,708 KB
testcase_04 AC 47 ms
58,184 KB
testcase_05 AC 47 ms
57,916 KB
testcase_06 AC 45 ms
57,704 KB
testcase_07 AC 46 ms
57,920 KB
testcase_08 AC 44 ms
58,732 KB
testcase_09 AC 42 ms
57,776 KB
testcase_10 AC 41 ms
58,048 KB
testcase_11 AC 39 ms
57,968 KB
testcase_12 AC 44 ms
58,600 KB
testcase_13 AC 42 ms
57,612 KB
testcase_14 AC 38 ms
57,796 KB
testcase_15 AC 48 ms
57,352 KB
testcase_16 AC 44 ms
58,228 KB
testcase_17 AC 47 ms
58,192 KB
testcase_18 AC 49 ms
61,176 KB
testcase_19 AC 42 ms
59,396 KB
testcase_20 AC 47 ms
58,964 KB
testcase_21 AC 45 ms
58,540 KB
testcase_22 AC 44 ms
58,456 KB
testcase_23 AC 35 ms
58,072 KB
testcase_24 AC 46 ms
57,488 KB
testcase_25 AC 40 ms
58,004 KB
testcase_26 AC 44 ms
58,236 KB
testcase_27 AC 32 ms
52,188 KB
testcase_28 AC 32 ms
52,692 KB
testcase_29 AC 31 ms
52,676 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):
    sita = max(1, x-N)
    ue = min(N, x-1)
    return max(0, ue - sita + 1)

ans = 0
for a in make_divisors(K):
    b = K // a
    ans += f(a) * f(b)

print(ans)
0