結果

問題 No.278 連続する整数の和(2)
ユーザー fmhrfmhr
提出日時 2015-10-15 09:48:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 16:00:28
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 357 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 36 ms
10,880 KB
testcase_06 AC 37 ms
10,624 KB
testcase_07 AC 42 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 334 ms
10,752 KB
testcase_10 AC 436 ms
10,752 KB
testcase_11 AC 465 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 409 ms
10,624 KB
testcase_14 AC 224 ms
10,624 KB
testcase_15 AC 348 ms
10,752 KB
testcase_16 AC 285 ms
10,752 KB
testcase_17 AC 347 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N%2==1:
    a = N
else:
    a = N/2
ans = 0
i = 1
while i**2<=a:
    if a%i==0:
        ans += i+a/i
    i += 1

print(int(ans))
0