結果

問題 No.864 四方演算
ユーザー moharan627moharan627
提出日時 2021-06-01 13:28:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 1,000 ms
コード長 1,098 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-09 00:13:04
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 211 ms
10,880 KB
testcase_02 AC 149 ms
10,752 KB
testcase_03 AC 165 ms
10,752 KB
testcase_04 AC 185 ms
10,752 KB
testcase_05 AC 137 ms
10,752 KB
testcase_06 AC 185 ms
10,752 KB
testcase_07 AC 168 ms
10,752 KB
testcase_08 AC 150 ms
10,752 KB
testcase_09 AC 102 ms
10,752 KB
testcase_10 AC 93 ms
10,752 KB
testcase_11 AC 61 ms
10,752 KB
testcase_12 AC 155 ms
10,624 KB
testcase_13 AC 117 ms
10,752 KB
testcase_14 AC 65 ms
10,624 KB
testcase_15 AC 208 ms
10,752 KB
testcase_16 AC 161 ms
10,752 KB
testcase_17 AC 180 ms
10,880 KB
testcase_18 AC 165 ms
10,752 KB
testcase_19 AC 135 ms
10,752 KB
testcase_20 AC 189 ms
10,880 KB
testcase_21 AC 162 ms
10,880 KB
testcase_22 AC 147 ms
10,880 KB
testcase_23 AC 46 ms
10,880 KB
testcase_24 AC 136 ms
10,880 KB
testcase_25 AC 85 ms
10,880 KB
testcase_26 AC 148 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
INF = float('inf')
MOD = 10**9 + 7
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N= II()
    K = II()
    def make_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]
    Div = make_divisors(K)
    Dl = len(Div)
    from math import ceil
    Ans = 0
    for n in range(Dl):
        Divmin = Div[n]
        Divmax = Div[Dl-n-1]
        #print(Divmin,Divmax)
        #print(min(Divmin-1,2*N-Divmin+1),min(Divmax-1,2*N-Divmax+1))
        Ans += max(min(Divmin-1,2*N-Divmin+1) * min(Divmax-1,2*N-Divmax+1),0)
        #print(Ans)
    print(Ans)
    return
solve()
0