結果

問題 No.278 連続する整数の和(2)
ユーザー niyarinniyarin
提出日時 2016-11-08 18:14:04
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 215 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 813,860 KB
最終ジャッジ日時 2024-11-25 04:57:08
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,816 KB
testcase_01 AC 10 ms
6,820 KB
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 10 ms
6,688 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
if N == 1:
    print 1
elif N == 2:
    print 1
else:
    v = N if N%2 else N/2
    ans = 0
    for i in range(1,v/2+1):
        if v % i == 0:
            ans += i
            ans += v/i
    print ans

0