結果

問題 No.864 四方演算
ユーザー tcltktcltk
提出日時 2021-06-10 06:35:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 866 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,084 KB
最終ジャッジ日時 2024-11-29 10:27:54
合計ジャッジ時間 5,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 141 ms
86,880 KB
testcase_03 AC 145 ms
86,784 KB
testcase_04 AC 148 ms
86,972 KB
testcase_05 AC 140 ms
86,660 KB
testcase_06 AC 148 ms
86,912 KB
testcase_07 AC 142 ms
86,960 KB
testcase_08 AC 140 ms
86,780 KB
testcase_09 AC 135 ms
86,464 KB
testcase_10 AC 135 ms
86,516 KB
testcase_11 AC 132 ms
86,576 KB
testcase_12 AC 144 ms
86,744 KB
testcase_13 AC 139 ms
87,084 KB
testcase_14 AC 134 ms
86,944 KB
testcase_15 AC 147 ms
86,656 KB
testcase_16 AC 141 ms
86,912 KB
testcase_17 AC 148 ms
86,864 KB
testcase_18 AC 144 ms
87,040 KB
testcase_19 AC 143 ms
87,040 KB
testcase_20 AC 146 ms
87,076 KB
testcase_21 AC 144 ms
86,784 KB
testcase_22 AC 138 ms
86,760 KB
testcase_23 AC 133 ms
86,912 KB
testcase_24 AC 143 ms
86,784 KB
testcase_25 AC 136 ms
86,712 KB
testcase_26 AC 140 ms
86,784 KB
testcase_27 AC 130 ms
86,968 KB
testcase_28 AC 129 ms
86,412 KB
testcase_29 AC 130 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 15
# """
# sys.stdin = io.StringIO(_INPUT)

def get_divisors(n):
    lower_divisors = []
    upper_divisors = []
    i = 1
    while i * i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors

def f(d):
    x = min(d, N)
    if max(1, d-x) <= min(x, d-1):
        return min(x, d-1) - max(1, d-x) + 1
    else:
        return 0

N = int(input())
K = int(input())
divs = get_divisors(K)
ans = 0
for d in divs:
    d1 = d
    d2 = K // d
    ans += f(d1) * f(d2)
print(2*ans)


0