結果

問題 No.864 四方演算
ユーザー kohei2019kohei2019
提出日時 2022-05-04 13:46:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 766 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 60,876 KB
最終ジャッジ日時 2024-07-03 16:18:47
合計ジャッジ時間 2,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 56 ms
58,440 KB
testcase_02 AC 52 ms
57,508 KB
testcase_03 AC 50 ms
57,444 KB
testcase_04 AC 53 ms
59,168 KB
testcase_05 AC 47 ms
57,652 KB
testcase_06 AC 51 ms
58,276 KB
testcase_07 AC 50 ms
57,904 KB
testcase_08 AC 53 ms
57,988 KB
testcase_09 AC 45 ms
58,716 KB
testcase_10 AC 44 ms
57,988 KB
testcase_11 AC 42 ms
57,324 KB
testcase_12 AC 49 ms
57,812 KB
testcase_13 AC 46 ms
58,616 KB
testcase_14 AC 41 ms
58,864 KB
testcase_15 AC 51 ms
59,268 KB
testcase_16 AC 48 ms
57,588 KB
testcase_17 AC 52 ms
57,920 KB
testcase_18 AC 57 ms
60,876 KB
testcase_19 AC 49 ms
57,924 KB
testcase_20 AC 55 ms
57,920 KB
testcase_21 AC 50 ms
58,364 KB
testcase_22 AC 49 ms
58,980 KB
testcase_23 AC 40 ms
58,912 KB
testcase_24 AC 49 ms
58,128 KB
testcase_25 AC 44 ms
59,332 KB
testcase_26 AC 49 ms
59,104 KB
testcase_27 AC 36 ms
52,868 KB
testcase_28 AC 36 ms
53,016 KB
testcase_29 AC 37 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(N):#約数列挙O(√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]
N = int(input())
K = int(input())

if 4 > K:
    print(0)
    exit()

div = make_divisors(K)
ans = 0
for d in div:
    if d == 1 or d == K:
        continue
    d1 = d
    d2 = K//d
    if d1 % 2 == 0:
        cnt1 = max(0,min((N-d1//2)*2+1,d1-1))
    else:
        cnt1 = max(0,min((N-d1//2)*2,d1-1))
    if d2 % 2 == 0:
        cnt2 = max(0,min((N-d2//2)*2+1,d2-1))
    else:
        cnt2 = max(0,min((N-d2//2)*2,d2-1))
    ans += cnt1*cnt2
print(ans)
0