結果

問題 No.888 約数の総和
ユーザー dangodango
提出日時 2023-06-13 16:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 59,908 KB
最終ジャッジ日時 2024-06-22 01:35:32
合計ジャッジ時間 2,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,948 KB
testcase_01 AC 31 ms
52,592 KB
testcase_02 AC 30 ms
53,044 KB
testcase_03 AC 31 ms
53,108 KB
testcase_04 AC 31 ms
53,048 KB
testcase_05 AC 30 ms
52,648 KB
testcase_06 AC 29 ms
53,332 KB
testcase_07 AC 29 ms
53,608 KB
testcase_08 AC 28 ms
52,632 KB
testcase_09 AC 31 ms
52,496 KB
testcase_10 AC 29 ms
53,204 KB
testcase_11 AC 29 ms
53,420 KB
testcase_12 AC 28 ms
52,652 KB
testcase_13 AC 29 ms
52,984 KB
testcase_14 AC 28 ms
52,732 KB
testcase_15 AC 29 ms
52,940 KB
testcase_16 AC 30 ms
52,472 KB
testcase_17 AC 28 ms
52,744 KB
testcase_18 AC 42 ms
58,104 KB
testcase_19 AC 39 ms
58,308 KB
testcase_20 AC 36 ms
59,404 KB
testcase_21 AC 44 ms
59,908 KB
testcase_22 AC 42 ms
58,696 KB
testcase_23 AC 32 ms
58,844 KB
testcase_24 AC 36 ms
58,036 KB
testcase_25 AC 36 ms
59,280 KB
testcase_26 AC 36 ms
58,100 KB
testcase_27 AC 40 ms
58,620 KB
testcase_28 AC 41 ms
58,304 KB
testcase_29 AC 41 ms
58,580 KB
testcase_30 AC 42 ms
58,060 KB
testcase_31 AC 41 ms
58,260 KB
testcase_32 AC 42 ms
58,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
divisors = set()
for i in range(1, int(N ** 0.5) + 1):
    if N % i == 0:
        divisors.add(i)
        divisors.add(int(N / i))
print(sum(list(divisors)))
0