結果

問題 No.278 連続する整数の和(2)
ユーザー tentententen
提出日時 2020-10-05 09:41:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-07-19 19:23:25
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,820 KB
testcase_01 WA -
testcase_02 AC 117 ms
40,156 KB
testcase_03 AC 116 ms
41,012 KB
testcase_04 AC 119 ms
40,956 KB
testcase_05 AC 100 ms
39,960 KB
testcase_06 AC 113 ms
40,860 KB
testcase_07 AC 115 ms
40,924 KB
testcase_08 AC 126 ms
40,708 KB
testcase_09 AC 115 ms
39,944 KB
testcase_10 AC 128 ms
40,924 KB
testcase_11 AC 119 ms
40,100 KB
testcase_12 WA -
testcase_13 AC 117 ms
40,204 KB
testcase_14 AC 116 ms
40,132 KB
testcase_15 AC 145 ms
40,992 KB
testcase_16 AC 110 ms
39,828 KB
testcase_17 AC 123 ms
40,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        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