結果

問題 No.888 約数の総和
ユーザー buriburiburiburi
提出日時 2019-10-15 09:51:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 189 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-08 00:20:30
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 RE -
testcase_04 AC 28 ms
10,752 KB
testcase_05 RE -
testcase_06 AC 28 ms
10,752 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 27 ms
10,752 KB
testcase_10 RE -
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 27 ms
10,752 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 147 ms
10,752 KB
testcase_20 RE -
testcase_21 AC 187 ms
10,752 KB
testcase_22 AC 198 ms
10,752 KB
testcase_23 RE -
testcase_24 AC 95 ms
10,752 KB
testcase_25 RE -
testcase_26 AC 111 ms
10,752 KB
testcase_27 AC 152 ms
10,752 KB
testcase_28 AC 159 ms
10,752 KB
testcase_29 RE -
testcase_30 AC 159 ms
10,752 KB
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
sq = math.floor(math.sqrt(N))
sum = 0
for p in range(1,sq + 1):
    if N%p == 0:
        sum += p
        sum += int(N/p)
if N == sq**2:
    um -= sq
print(sum)
0