結果

問題 No.864 四方演算
ユーザー irumo8202irumo8202
提出日時 2022-01-28 17:18:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 373 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 61,548 KB
最終ジャッジ日時 2024-06-09 09:49:09
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,180 KB
testcase_01 AC 49 ms
57,288 KB
testcase_02 AC 44 ms
58,056 KB
testcase_03 AC 46 ms
57,800 KB
testcase_04 AC 49 ms
57,664 KB
testcase_05 AC 44 ms
58,736 KB
testcase_06 AC 48 ms
58,592 KB
testcase_07 AC 51 ms
56,812 KB
testcase_08 AC 45 ms
58,444 KB
testcase_09 AC 41 ms
57,876 KB
testcase_10 AC 40 ms
57,544 KB
testcase_11 AC 39 ms
58,004 KB
testcase_12 AC 43 ms
57,184 KB
testcase_13 AC 44 ms
57,868 KB
testcase_14 AC 40 ms
57,600 KB
testcase_15 AC 49 ms
58,020 KB
testcase_16 AC 46 ms
57,896 KB
testcase_17 AC 49 ms
58,516 KB
testcase_18 AC 52 ms
61,548 KB
testcase_19 AC 43 ms
58,172 KB
testcase_20 AC 49 ms
58,316 KB
testcase_21 AC 48 ms
57,724 KB
testcase_22 AC 45 ms
58,344 KB
testcase_23 AC 37 ms
58,268 KB
testcase_24 AC 44 ms
57,996 KB
testcase_25 AC 39 ms
57,788 KB
testcase_26 AC 46 ms
59,552 KB
testcase_27 AC 35 ms
53,580 KB
testcase_28 AC 35 ms
52,852 KB
testcase_29 AC 33 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def make_divs(n):
    divs = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            divs.add(i)
            divs.add(n // i)
        i += 1
    return divs


def cnt(x):
    l = max(1, x - N)
    r = min(x - 1, N)
    return max(0, r - l + 1)


ans = 0
for d in make_divs(K):
    ans += cnt(d) * cnt(K // d)
print(ans)
0