結果

問題 No.278 連続する整数の和(2)
ユーザー tnoda_tnoda_
提出日時 2015-09-08 13:47:29
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-19 04:58:19
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = input()
if N % 2 == 0:
    print(1)
    quit()
ans = 0
i = 1
while N >= i * i:
    if N == i * i:
        ans += i
        i += 1
        break
    elif N % i == 0:
        ans += (N / i) + i
        i += 1
    else:
        i += 1
print(ans)
0