結果

問題 No.278 連続する整数の和(2)
ユーザー niyarinniyarin
提出日時 2016-11-08 20:19:36
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 47,332 KB
最終ジャッジ日時 2024-11-25 05:19:06
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,820 KB
testcase_01 AC 9 ms
6,820 KB
testcase_02 AC 142 ms
40,376 KB
testcase_03 AC 11 ms
6,820 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 11 ms
7,040 KB
testcase_06 AC 14 ms
7,424 KB
testcase_07 AC 13 ms
7,424 KB
testcase_08 WA -
testcase_09 AC 124 ms
38,180 KB
testcase_10 AC 155 ms
47,332 KB
testcase_11 AC 122 ms
37,080 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 102 ms
32,124 KB
testcase_14 AC 81 ms
26,552 KB
testcase_15 AC 91 ms
28,860 KB
testcase_16 AC 76 ms
23,928 KB
testcase_17 AC 133 ms
39,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *
N = input()
if N == 1:
    print 1
elif N == 2:
    print 1
else:
    v = N if N%2 else N/2
    ans = 0
    sn = int(sqrt(v))
    for i in range(1,sn+1):
        if v % i == 0:
            if i*i == N:
                ans += i
            else:
                ans += i
                ans += v/i
    print ans
0