結果

問題 No.864 四方演算
ユーザー kumatan400kumatan400
提出日時 2021-12-29 13:07:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 61,656 KB
最終ジャッジ日時 2024-10-03 20:03:52
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,320 KB
testcase_01 AC 46 ms
58,664 KB
testcase_02 AC 42 ms
57,456 KB
testcase_03 AC 44 ms
58,852 KB
testcase_04 AC 44 ms
58,004 KB
testcase_05 AC 41 ms
58,132 KB
testcase_06 AC 45 ms
57,720 KB
testcase_07 AC 44 ms
58,992 KB
testcase_08 AC 43 ms
58,272 KB
testcase_09 AC 38 ms
58,240 KB
testcase_10 AC 39 ms
57,872 KB
testcase_11 AC 37 ms
58,724 KB
testcase_12 AC 43 ms
58,404 KB
testcase_13 AC 43 ms
58,060 KB
testcase_14 AC 36 ms
57,728 KB
testcase_15 AC 46 ms
58,184 KB
testcase_16 AC 43 ms
57,976 KB
testcase_17 AC 46 ms
58,480 KB
testcase_18 AC 49 ms
61,656 KB
testcase_19 AC 43 ms
58,044 KB
testcase_20 AC 47 ms
58,608 KB
testcase_21 AC 44 ms
59,612 KB
testcase_22 AC 42 ms
58,088 KB
testcase_23 AC 37 ms
58,068 KB
testcase_24 AC 42 ms
59,476 KB
testcase_25 AC 40 ms
59,372 KB
testcase_26 AC 43 ms
59,276 KB
testcase_27 AC 32 ms
52,820 KB
testcase_28 AC 32 ms
52,472 KB
testcase_29 AC 34 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
    return divisors

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

def cnt(R):
    return min(R-1, max(0, R-1 - (R-1-N)*2))

D = make_divisors(K)
ans = 0
for d in D:
    r = K // d
    ans += cnt(d) * cnt(r)
print(ans)
0