結果

問題 No.278 連続する整数の和(2)
ユーザー しらっ亭しらっ亭
提出日時 2015-09-05 22:00:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-02 11:48:24
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 173 ms
18,944 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 166 ms
18,432 KB
testcase_09 AC 164 ms
18,560 KB
testcase_10 AC 209 ms
20,736 KB
testcase_11 AC 160 ms
18,176 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 137 ms
16,896 KB
testcase_14 AC 118 ms
15,616 KB
testcase_15 AC 127 ms
16,128 KB
testcase_16 AC 104 ms
14,848 KB
testcase_17 AC 174 ms
18,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
    rt = int(n ** 0.5) + 1
    s = [False] * rt
    s[1] = True
    for x in range(2, rt):
        if n % x == 0:
            s[x] = True
    return (i for i in range(rt) if s[i])


def solve():
    N = int(input())

    g = N if N % 2 else N // 2

    s = 0
    for d in divisors(g):
        s += d
        e = g // d
        if e != d:
            s += e

    print(s)


if __name__ == '__main__':
    solve()
0