結果

問題 No.864 四方演算
ユーザー stngstng
提出日時 2022-07-24 20:39:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 705 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,384 KB
最終ジャッジ日時 2024-07-06 15:47:31
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,496 KB
testcase_01 AC 52 ms
58,596 KB
testcase_02 AC 43 ms
58,244 KB
testcase_03 AC 42 ms
57,872 KB
testcase_04 AC 45 ms
59,588 KB
testcase_05 AC 42 ms
58,412 KB
testcase_06 AC 46 ms
58,048 KB
testcase_07 AC 44 ms
57,796 KB
testcase_08 AC 41 ms
57,992 KB
testcase_09 AC 41 ms
58,420 KB
testcase_10 AC 40 ms
58,420 KB
testcase_11 AC 36 ms
59,176 KB
testcase_12 AC 43 ms
58,152 KB
testcase_13 AC 41 ms
58,372 KB
testcase_14 AC 40 ms
58,120 KB
testcase_15 AC 46 ms
58,328 KB
testcase_16 AC 44 ms
57,912 KB
testcase_17 AC 44 ms
58,792 KB
testcase_18 AC 46 ms
60,384 KB
testcase_19 AC 44 ms
58,656 KB
testcase_20 AC 47 ms
58,604 KB
testcase_21 AC 42 ms
58,120 KB
testcase_22 AC 42 ms
57,924 KB
testcase_23 AC 34 ms
58,700 KB
testcase_24 AC 41 ms
57,588 KB
testcase_25 AC 38 ms
57,900 KB
testcase_26 AC 41 ms
57,900 KB
testcase_27 AC 33 ms
53,152 KB
testcase_28 AC 32 ms
53,676 KB
testcase_29 AC 32 ms
53,064 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