結果

問題 No.864 四方演算
ユーザー kohei2019kohei2019
提出日時 2022-05-04 13:40:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 61,736 KB
最終ジャッジ日時 2024-07-03 16:11:13
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 47 ms
59,092 KB
testcase_03 AC 47 ms
57,584 KB
testcase_04 AC 50 ms
57,992 KB
testcase_05 AC 47 ms
58,036 KB
testcase_06 AC 50 ms
58,640 KB
testcase_07 AC 50 ms
57,308 KB
testcase_08 AC 48 ms
58,516 KB
testcase_09 AC 43 ms
57,888 KB
testcase_10 AC 44 ms
58,196 KB
testcase_11 AC 41 ms
58,432 KB
testcase_12 AC 48 ms
58,436 KB
testcase_13 AC 46 ms
58,112 KB
testcase_14 AC 43 ms
58,448 KB
testcase_15 AC 53 ms
57,932 KB
testcase_16 AC 50 ms
58,216 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 40 ms
59,304 KB
testcase_24 WA -
testcase_25 AC 44 ms
58,740 KB
testcase_26 WA -
testcase_27 AC 36 ms
52,592 KB
testcase_28 AC 36 ms
52,832 KB
testcase_29 AC 37 ms
53,556 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 == 2:
        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 == 2:
        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