結果

問題 No.278 連続する整数の和(2)
ユーザー fiordfiord
提出日時 2017-08-24 14:53:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-06-02 11:55:57
合計ジャッジ時間 1,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 70 ms
74,880 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 41 ms
58,240 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 44 ms
58,496 KB
testcase_11 AC 56 ms
60,032 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 62 ms
69,504 KB
testcase_14 AC 54 ms
59,392 KB
testcase_15 AC 89 ms
64,640 KB
testcase_16 AC 57 ms
59,776 KB
testcase_17 AC 54 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = n if n % 2 == 1 else int(n / 2)
ret = i = 1
while i * i <= m:
    i += 1
    cnt = 1
    while m % i == 0:
        m /= i
        cnt += 1
    ret *= (i**cnt - 1) / (i - 1)
ret *= m + 1 if m > 1 else 1
print(int(ret))
0