結果

問題 No.864 四方演算
ユーザー ronpooronpoo
提出日時 2023-09-07 17:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 562 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 60,980 KB
最終ジャッジ日時 2024-06-25 10:52:46
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,816 KB
testcase_01 AC 55 ms
57,940 KB
testcase_02 AC 49 ms
58,100 KB
testcase_03 AC 51 ms
57,196 KB
testcase_04 AC 52 ms
57,784 KB
testcase_05 AC 47 ms
57,116 KB
testcase_06 AC 51 ms
57,864 KB
testcase_07 AC 51 ms
58,056 KB
testcase_08 AC 48 ms
59,116 KB
testcase_09 AC 44 ms
59,824 KB
testcase_10 AC 45 ms
58,492 KB
testcase_11 AC 42 ms
57,536 KB
testcase_12 AC 50 ms
57,376 KB
testcase_13 AC 48 ms
58,124 KB
testcase_14 AC 42 ms
58,544 KB
testcase_15 AC 55 ms
58,040 KB
testcase_16 AC 50 ms
58,120 KB
testcase_17 AC 53 ms
58,404 KB
testcase_18 AC 55 ms
60,980 KB
testcase_19 AC 49 ms
58,112 KB
testcase_20 AC 54 ms
58,128 KB
testcase_21 AC 51 ms
59,112 KB
testcase_22 AC 49 ms
59,628 KB
testcase_23 AC 42 ms
57,536 KB
testcase_24 AC 48 ms
59,140 KB
testcase_25 AC 46 ms
57,808 KB
testcase_26 AC 49 ms
58,464 KB
testcase_27 AC 37 ms
53,544 KB
testcase_28 AC 38 ms
52,136 KB
testcase_29 AC 36 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
K = int(input())

# 約数列挙
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)

ans = 0
for v in div:
    v -= 1
    x = 0
    if v <= 2*N:
        x = min(v, v-(v-N)*2)
    v = K//(v+1)-1
    y = 0
    if v <= 2*N:
        y = min(v, v-(v-N)*2)
    ans += x * y
print(ans)
0