結果

問題 No.888 約数の総和
ユーザー ThetaTheta
提出日時 2022-11-25 14:00:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 60,784 KB
最終ジャッジ日時 2024-10-01 22:09:51
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,004 KB
testcase_01 AC 41 ms
52,620 KB
testcase_02 AC 38 ms
52,932 KB
testcase_03 AC 37 ms
52,256 KB
testcase_04 AC 37 ms
53,812 KB
testcase_05 AC 40 ms
53,616 KB
testcase_06 AC 39 ms
53,080 KB
testcase_07 AC 38 ms
52,564 KB
testcase_08 AC 37 ms
52,792 KB
testcase_09 AC 37 ms
53,452 KB
testcase_10 AC 39 ms
53,000 KB
testcase_11 AC 39 ms
52,600 KB
testcase_12 AC 39 ms
52,720 KB
testcase_13 AC 38 ms
52,584 KB
testcase_14 AC 37 ms
52,452 KB
testcase_15 AC 37 ms
53,740 KB
testcase_16 AC 36 ms
52,944 KB
testcase_17 AC 38 ms
52,464 KB
testcase_18 AC 53 ms
59,020 KB
testcase_19 AC 51 ms
59,120 KB
testcase_20 AC 45 ms
57,632 KB
testcase_21 AC 58 ms
60,784 KB
testcase_22 AC 55 ms
57,568 KB
testcase_23 AC 40 ms
57,184 KB
testcase_24 AC 46 ms
57,512 KB
testcase_25 AC 48 ms
58,008 KB
testcase_26 AC 48 ms
58,068 KB
testcase_27 AC 51 ms
57,260 KB
testcase_28 AC 51 ms
58,800 KB
testcase_29 AC 53 ms
58,480 KB
testcase_30 AC 52 ms
57,728 KB
testcase_31 AC 53 ms
58,444 KB
testcase_32 AC 55 ms
58,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, floor


def calc_positive_divisors(num: int) -> list[int]:
    small_divisors = []
    large_divisors = []
    for n in range(1, floor(sqrt(num))+1):
        if num % n == 0:
            small_divisors.append(n)
            large_divisors.append(num//n)
    if small_divisors[-1] == large_divisors[-1]:
        large_divisors.pop()
    divisors = small_divisors + list(reversed(large_divisors))
    return divisors


def main():
    N = int(input())
    print(sum(calc_positive_divisors(N)))


if __name__ == "__main__":
    main()
0