結果

問題 No.888 約数の総和
ユーザー tails1434tails1434
提出日時 2019-12-31 21:06:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 58,944 KB
最終ジャッジ日時 2024-11-20 15:11:32
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,352 KB
testcase_01 AC 38 ms
53,224 KB
testcase_02 AC 38 ms
52,672 KB
testcase_03 AC 39 ms
53,320 KB
testcase_04 AC 38 ms
53,436 KB
testcase_05 AC 38 ms
53,116 KB
testcase_06 AC 37 ms
52,684 KB
testcase_07 AC 38 ms
52,940 KB
testcase_08 AC 39 ms
52,484 KB
testcase_09 AC 38 ms
53,512 KB
testcase_10 AC 43 ms
52,480 KB
testcase_11 AC 39 ms
52,672 KB
testcase_12 AC 38 ms
52,016 KB
testcase_13 AC 39 ms
52,628 KB
testcase_14 AC 38 ms
53,008 KB
testcase_15 AC 39 ms
53,340 KB
testcase_16 AC 39 ms
52,164 KB
testcase_17 AC 38 ms
52,784 KB
testcase_18 AC 54 ms
58,380 KB
testcase_19 AC 51 ms
57,632 KB
testcase_20 AC 48 ms
57,760 KB
testcase_21 AC 56 ms
58,944 KB
testcase_22 AC 54 ms
57,872 KB
testcase_23 AC 42 ms
57,756 KB
testcase_24 AC 47 ms
58,912 KB
testcase_25 AC 48 ms
57,776 KB
testcase_26 AC 48 ms
58,372 KB
testcase_27 AC 51 ms
58,172 KB
testcase_28 AC 52 ms
58,352 KB
testcase_29 AC 52 ms
58,396 KB
testcase_30 AC 52 ms
57,860 KB
testcase_31 AC 54 ms
57,760 KB
testcase_32 AC 55 ms
57,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(N):
    ass = []
    for i in range(1, int(N ** 0.5) + 1):
        if N % i == 0:
            ass.append(i)

            if i * i == N:
                continue
            ass.append(N // i)

    return ass

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


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