結果

問題 No.888 約数の総和
ユーザー stngstng
提出日時 2022-08-06 16:56:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 59,336 KB
最終ジャッジ日時 2024-09-16 11:47:02
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,740 KB
testcase_01 AC 36 ms
53,292 KB
testcase_02 AC 36 ms
52,796 KB
testcase_03 AC 37 ms
52,604 KB
testcase_04 AC 37 ms
53,504 KB
testcase_05 AC 36 ms
53,272 KB
testcase_06 AC 37 ms
52,336 KB
testcase_07 AC 36 ms
53,160 KB
testcase_08 AC 36 ms
52,700 KB
testcase_09 AC 36 ms
53,392 KB
testcase_10 AC 41 ms
53,476 KB
testcase_11 AC 36 ms
53,012 KB
testcase_12 AC 36 ms
52,860 KB
testcase_13 AC 35 ms
53,316 KB
testcase_14 AC 38 ms
52,380 KB
testcase_15 AC 36 ms
52,472 KB
testcase_16 AC 35 ms
52,508 KB
testcase_17 AC 36 ms
52,348 KB
testcase_18 AC 52 ms
58,640 KB
testcase_19 AC 48 ms
58,588 KB
testcase_20 AC 45 ms
58,760 KB
testcase_21 AC 53 ms
58,752 KB
testcase_22 AC 50 ms
57,832 KB
testcase_23 AC 39 ms
58,384 KB
testcase_24 AC 44 ms
57,712 KB
testcase_25 AC 46 ms
58,612 KB
testcase_26 AC 45 ms
57,776 KB
testcase_27 AC 48 ms
57,996 KB
testcase_28 AC 49 ms
57,632 KB
testcase_29 AC 48 ms
57,576 KB
testcase_30 AC 51 ms
58,992 KB
testcase_31 AC 51 ms
58,512 KB
testcase_32 AC 51 ms
59,336 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)

    divisors.sort()
    return divisors

n = int(input())
print(sum(make_divisors(n)))
0