結果

問題 No.278 連続する整数の和(2)
ユーザー convexineqconvexineq
提出日時 2020-12-26 17:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 58,904 KB
最終ジャッジ日時 2024-09-24 20:10:14
合計ジャッジ時間 1,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,624 KB
testcase_01 AC 36 ms
51,948 KB
testcase_02 AC 55 ms
57,808 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 37 ms
52,336 KB
testcase_05 AC 41 ms
57,544 KB
testcase_06 AC 40 ms
57,392 KB
testcase_07 AC 42 ms
58,904 KB
testcase_08 AC 53 ms
57,616 KB
testcase_09 AC 55 ms
57,508 KB
testcase_10 AC 57 ms
58,252 KB
testcase_11 AC 54 ms
57,392 KB
testcase_12 AC 36 ms
53,336 KB
testcase_13 AC 52 ms
58,032 KB
testcase_14 AC 49 ms
57,104 KB
testcase_15 AC 49 ms
57,192 KB
testcase_16 AC 47 ms
57,692 KB
testcase_17 AC 55 ms
58,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

n = int(input())
print(sum(divisor_list(n if n%2 else n//2)))
0