結果

問題 No.864 四方演算
ユーザー tcltktcltk
提出日時 2021-06-10 06:34:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 887 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,828 KB
最終ジャッジ日時 2024-11-29 10:26:52
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
86,816 KB
testcase_01 AC 148 ms
86,772 KB
testcase_02 AC 144 ms
86,784 KB
testcase_03 AC 141 ms
86,872 KB
testcase_04 AC 143 ms
86,912 KB
testcase_05 AC 144 ms
86,732 KB
testcase_06 AC 147 ms
86,732 KB
testcase_07 AC 143 ms
86,456 KB
testcase_08 AC 141 ms
86,880 KB
testcase_09 AC 141 ms
87,152 KB
testcase_10 AC 137 ms
86,656 KB
testcase_11 AC 132 ms
86,912 KB
testcase_12 AC 144 ms
87,040 KB
testcase_13 AC 139 ms
86,932 KB
testcase_14 AC 135 ms
86,816 KB
testcase_15 AC 149 ms
86,880 KB
testcase_16 AC 142 ms
86,732 KB
testcase_17 AC 145 ms
86,776 KB
testcase_18 AC 157 ms
88,828 KB
testcase_19 AC 141 ms
86,808 KB
testcase_20 AC 151 ms
86,764 KB
testcase_21 AC 144 ms
86,816 KB
testcase_22 AC 141 ms
87,104 KB
testcase_23 AC 132 ms
87,172 KB
testcase_24 AC 140 ms
86,912 KB
testcase_25 AC 140 ms
86,884 KB
testcase_26 AC 145 ms
86,912 KB
testcase_27 AC 131 ms
86,912 KB
testcase_28 AC 132 ms
86,836 KB
testcase_29 AC 134 ms
86,664 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 + upper_divisors[::-1]

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(ans)


0