結果

問題 No.864 四方演算
ユーザー tnodinotnodino
提出日時 2022-05-28 15:26:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 565 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-20 22:22:11
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 137 ms
10,880 KB
testcase_02 AC 101 ms
10,880 KB
testcase_03 AC 111 ms
10,880 KB
testcase_04 AC 122 ms
10,880 KB
testcase_05 AC 96 ms
10,752 KB
testcase_06 AC 123 ms
10,752 KB
testcase_07 AC 114 ms
10,880 KB
testcase_08 AC 104 ms
10,752 KB
testcase_09 AC 74 ms
10,752 KB
testcase_10 AC 70 ms
10,752 KB
testcase_11 AC 51 ms
10,880 KB
testcase_12 AC 106 ms
10,880 KB
testcase_13 AC 85 ms
10,880 KB
testcase_14 AC 54 ms
10,752 KB
testcase_15 AC 137 ms
10,752 KB
testcase_16 AC 108 ms
10,752 KB
testcase_17 AC 120 ms
10,752 KB
testcase_18 AC 110 ms
11,008 KB
testcase_19 AC 91 ms
10,752 KB
testcase_20 AC 124 ms
10,752 KB
testcase_21 AC 108 ms
10,752 KB
testcase_22 AC 99 ms
10,880 KB
testcase_23 AC 40 ms
10,880 KB
testcase_24 AC 92 ms
10,752 KB
testcase_25 AC 66 ms
10,880 KB
testcase_26 AC 104 ms
10,752 KB
testcase_27 AC 34 ms
10,880 KB
testcase_28 AC 34 ms
10,880 KB
testcase_29 AC 34 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import sqrt
def divisor(N):
    ret = []
    for i in range(1,int(sqrt(N))+1):
        if N % i == 0:
            ret.append(i)
            if N // i != i:
                ret.append(N//i)
    ret.sort()
    return ret

N = int(input())
K = int(input())
div = divisor(K)
cnt = defaultdict(int)
for d in div:
    if d < 2 or N * 2 < d:
        continue
    if 2 <= d <= N + 1:
        cnt[d] = d - 1
    else:
        cnt[d] = N * 2 + 1 - d
ans = 0
for ac in div:
    bd = K // ac
    ans += cnt[ac] * cnt[bd]
print(ans)
0