結果

問題 No.278 連続する整数の和(2)
ユーザー tentententen
提出日時 2020-10-05 09:42:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-19 19:23:37
合計ジャッジ時間 5,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,144 KB
testcase_01 AC 129 ms
41,344 KB
testcase_02 AC 146 ms
41,468 KB
testcase_03 AC 130 ms
41,464 KB
testcase_04 AC 128 ms
41,204 KB
testcase_05 AC 126 ms
41,432 KB
testcase_06 AC 130 ms
41,452 KB
testcase_07 AC 128 ms
41,612 KB
testcase_08 AC 133 ms
40,336 KB
testcase_09 AC 146 ms
41,452 KB
testcase_10 AC 149 ms
41,144 KB
testcase_11 AC 133 ms
40,232 KB
testcase_12 AC 128 ms
41,212 KB
testcase_13 AC 147 ms
41,340 KB
testcase_14 AC 143 ms
41,320 KB
testcase_15 AC 127 ms
40,424 KB
testcase_16 AC 140 ms
41,480 KB
testcase_17 AC 167 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        if (n <= 2) {
            System.out.println(1);
            return;
        }
        long x;
        if (n % 2 == 0) {
            x = n / 2;
        } else {
            x = n;
        }
        long ans = 1 + x;
        for (long i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                ans += i;
                if (i * i < x) {
                    ans += x / i;
                }
            }
        }
        System.out.println(ans);
    }
}
0