結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,064 KB
testcase_01 AC 49 ms
58,920 KB
testcase_02 AC 43 ms
57,740 KB
testcase_03 AC 49 ms
57,860 KB
testcase_04 AC 47 ms
58,232 KB
testcase_05 AC 43 ms
57,468 KB
testcase_06 AC 47 ms
58,732 KB
testcase_07 AC 45 ms
57,164 KB
testcase_08 AC 46 ms
58,224 KB
testcase_09 AC 41 ms
57,620 KB
testcase_10 AC 40 ms
58,260 KB
testcase_11 AC 40 ms
58,136 KB
testcase_12 AC 45 ms
58,264 KB
testcase_13 AC 41 ms
59,264 KB
testcase_14 AC 38 ms
57,688 KB
testcase_15 AC 48 ms
57,232 KB
testcase_16 AC 45 ms
58,132 KB
testcase_17 AC 47 ms
58,136 KB
testcase_18 AC 49 ms
60,836 KB
testcase_19 AC 43 ms
59,052 KB
testcase_20 AC 48 ms
59,416 KB
testcase_21 AC 48 ms
59,680 KB
testcase_22 AC 48 ms
58,660 KB
testcase_23 AC 40 ms
58,172 KB
testcase_24 AC 44 ms
58,340 KB
testcase_25 AC 41 ms
59,044 KB
testcase_26 AC 45 ms
58,380 KB
testcase_27 AC 34 ms
52,204 KB
testcase_28 AC 34 ms
51,892 KB
testcase_29 AC 33 ms
52,076 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