結果

問題 No.278 連続する整数の和(2)
ユーザー しらっ亭しらっ亭
提出日時 2015-09-05 21:59:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,764 KB
最終ジャッジ日時 2024-07-19 04:16:31
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 193 ms
18,824 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 181 ms
18,352 KB
testcase_10 AC 225 ms
20,764 KB
testcase_11 AC 176 ms
18,160 KB
testcase_12 WA -
testcase_13 AC 154 ms
16,880 KB
testcase_14 AC 127 ms
15,456 KB
testcase_15 AC 138 ms
15,928 KB
testcase_16 AC 114 ms
14,732 KB
testcase_17 AC 185 ms
18,448 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
        s += g // d

    print(s)


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