結果

問題 No.888 約数の総和
ユーザー tter4tter4
提出日時 2019-09-20 22:42:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 60,468 KB
最終ジャッジ日時 2024-09-14 18:42:33
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 37 ms
53,340 KB
testcase_02 AC 37 ms
53,636 KB
testcase_03 AC 37 ms
52,380 KB
testcase_04 AC 37 ms
52,000 KB
testcase_05 AC 38 ms
52,412 KB
testcase_06 AC 37 ms
53,072 KB
testcase_07 AC 38 ms
52,652 KB
testcase_08 AC 37 ms
53,660 KB
testcase_09 AC 37 ms
53,320 KB
testcase_10 AC 37 ms
53,960 KB
testcase_11 AC 37 ms
54,112 KB
testcase_12 AC 38 ms
52,244 KB
testcase_13 AC 38 ms
52,992 KB
testcase_14 AC 37 ms
53,012 KB
testcase_15 AC 38 ms
53,388 KB
testcase_16 AC 38 ms
52,084 KB
testcase_17 AC 38 ms
52,616 KB
testcase_18 AC 53 ms
57,632 KB
testcase_19 AC 49 ms
57,724 KB
testcase_20 AC 48 ms
58,112 KB
testcase_21 AC 55 ms
60,468 KB
testcase_22 AC 54 ms
57,456 KB
testcase_23 AC 41 ms
57,824 KB
testcase_24 AC 46 ms
58,688 KB
testcase_25 AC 47 ms
58,332 KB
testcase_26 AC 47 ms
58,268 KB
testcase_27 AC 49 ms
58,832 KB
testcase_28 AC 51 ms
58,628 KB
testcase_29 AC 50 ms
59,068 KB
testcase_30 AC 52 ms
58,180 KB
testcase_31 AC 53 ms
59,188 KB
testcase_32 AC 54 ms
58,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

divnum = []
for i in range(1, int(math.sqrt(n))+1):
    if n % i == 0:
        divnum.append(i)
        if i != n//i:
            divnum.append(n//i)
print(sum(divnum))
0