結果

問題 No.888 約数の総和
ユーザー GrayCoderGrayCoder
提出日時 2019-09-20 22:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,220 KB
最終ジャッジ日時 2024-09-14 18:34:11
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,368 KB
testcase_01 AC 39 ms
53,192 KB
testcase_02 AC 38 ms
51,884 KB
testcase_03 AC 39 ms
52,216 KB
testcase_04 AC 38 ms
53,616 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 40 ms
52,528 KB
testcase_07 AC 38 ms
52,724 KB
testcase_08 AC 39 ms
53,012 KB
testcase_09 AC 38 ms
52,068 KB
testcase_10 AC 39 ms
52,536 KB
testcase_11 AC 38 ms
53,552 KB
testcase_12 AC 39 ms
53,076 KB
testcase_13 AC 39 ms
53,132 KB
testcase_14 AC 38 ms
53,496 KB
testcase_15 AC 39 ms
52,000 KB
testcase_16 AC 38 ms
52,728 KB
testcase_17 AC 38 ms
52,888 KB
testcase_18 AC 67 ms
57,780 KB
testcase_19 AC 60 ms
58,136 KB
testcase_20 AC 54 ms
59,340 KB
testcase_21 AC 66 ms
60,220 KB
testcase_22 AC 66 ms
59,224 KB
testcase_23 AC 41 ms
57,924 KB
testcase_24 AC 51 ms
58,772 KB
testcase_25 AC 53 ms
57,724 KB
testcase_26 AC 54 ms
57,724 KB
testcase_27 AC 59 ms
59,120 KB
testcase_28 AC 60 ms
59,524 KB
testcase_29 AC 62 ms
58,200 KB
testcase_30 AC 62 ms
58,184 KB
testcase_31 AC 64 ms
58,924 KB
testcase_32 AC 66 ms
58,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())

    n = int(N ** 0.5)
    a = set()
    for i in range(1, n + 1):
        div_, mod_ = divmod(N, i)
        if not mod_:
            a.add(i)
            a.add(div_)
    print(sum(a))

main()
0