結果

問題 No.864 四方演算
ユーザー stngstng
提出日時 2022-07-24 20:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 705 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-07-06 15:46:26
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 47 ms
57,600 KB
testcase_02 AC 43 ms
57,452 KB
testcase_03 AC 44 ms
57,856 KB
testcase_04 AC 45 ms
57,600 KB
testcase_05 AC 42 ms
57,472 KB
testcase_06 AC 45 ms
57,728 KB
testcase_07 AC 47 ms
57,600 KB
testcase_08 AC 42 ms
57,088 KB
testcase_09 AC 40 ms
57,856 KB
testcase_10 AC 39 ms
57,780 KB
testcase_11 AC 37 ms
57,856 KB
testcase_12 AC 42 ms
57,472 KB
testcase_13 AC 40 ms
57,344 KB
testcase_14 AC 37 ms
57,472 KB
testcase_15 AC 45 ms
57,728 KB
testcase_16 AC 43 ms
57,856 KB
testcase_17 AC 45 ms
58,112 KB
testcase_18 AC 46 ms
58,624 KB
testcase_19 AC 43 ms
57,984 KB
testcase_20 AC 46 ms
57,984 KB
testcase_21 AC 44 ms
58,112 KB
testcase_22 AC 43 ms
57,856 KB
testcase_23 AC 37 ms
57,600 KB
testcase_24 AC 42 ms
58,112 KB
testcase_25 AC 39 ms
57,216 KB
testcase_26 AC 42 ms
57,984 KB
testcase_27 AC 32 ms
52,608 KB
testcase_28 AC 31 ms
52,352 KB
testcase_29 AC 32 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
k = int(input())

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    divisors.sort()
    return divisors

div = make_divisors(k)
ans = 0
for i in range((1+len(div))//2):
    ac,bd = div[i],div[len(div)-i-1]
    #print(ac,bd,ans)
    if ac > 2*n or bd > 2*n:
        continue
    if ac > n:
        acn = (n-(ac-n))+1
    else:
        acn = ac-1
    if bd > n:
        bdn = (n-(bd-n))+1
    else:
        bdn = bd-1
    #print(acn,bdn,"acbd",ac,bd)
    if ac == bd:
        ans += acn*bdn
    else:
        ans += acn*bdn*2

print(ans)
0