結果

問題 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
コンパイル時間 170 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-26 09:48:18
合計ジャッジ時間 5,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 211 ms
10,880 KB
testcase_02 AC 150 ms
10,880 KB
testcase_03 AC 173 ms
10,880 KB
testcase_04 AC 185 ms
11,008 KB
testcase_05 AC 140 ms
10,880 KB
testcase_06 AC 187 ms
10,880 KB
testcase_07 AC 172 ms
10,752 KB
testcase_08 AC 152 ms
10,752 KB
testcase_09 AC 103 ms
10,880 KB
testcase_10 AC 94 ms
10,880 KB
testcase_11 AC 63 ms
10,880 KB
testcase_12 AC 156 ms
10,880 KB
testcase_13 AC 119 ms
10,752 KB
testcase_14 AC 68 ms
10,880 KB
testcase_15 AC 211 ms
10,880 KB
testcase_16 AC 162 ms
10,752 KB
testcase_17 AC 181 ms
11,008 KB
testcase_18 AC 166 ms
10,880 KB
testcase_19 AC 135 ms
11,008 KB
testcase_20 AC 192 ms
11,008 KB
testcase_21 AC 165 ms
11,008 KB
testcase_22 AC 148 ms
10,880 KB
testcase_23 AC 47 ms
10,880 KB
testcase_24 AC 141 ms
11,008 KB
testcase_25 AC 85 ms
10,880 KB
testcase_26 AC 149 ms
11,008 KB
testcase_27 AC 33 ms
10,880 KB
testcase_28 AC 32 ms
10,880 KB
testcase_29 AC 32 ms
10,880 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