結果

問題 No.278 連続する整数の和(2)
ユーザー htensaihtensai
提出日時 2020-01-09 11:42:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 2,795 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 51,108 KB
最終ジャッジ日時 2024-11-23 03:46:08
合計ジャッジ時間 4,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,776 KB
testcase_01 AC 55 ms
50,160 KB
testcase_02 AC 79 ms
50,936 KB
testcase_03 AC 56 ms
50,036 KB
testcase_04 AC 54 ms
50,132 KB
testcase_05 AC 54 ms
50,200 KB
testcase_06 AC 54 ms
50,136 KB
testcase_07 AC 56 ms
49,812 KB
testcase_08 AC 78 ms
50,824 KB
testcase_09 AC 76 ms
51,108 KB
testcase_10 AC 80 ms
50,844 KB
testcase_11 AC 79 ms
50,932 KB
testcase_12 AC 53 ms
49,868 KB
testcase_13 AC 76 ms
51,080 KB
testcase_14 AC 72 ms
50,948 KB
testcase_15 AC 71 ms
50,904 KB
testcase_16 AC 70 ms
51,088 KB
testcase_17 AC 78 ms
51,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        long n = Long.parseLong(br.readLine());
        long g;
        if (n % 2 == 0) {
            g = n / 2;
        } else {
            g = n;
        }
        long ans;
        if (g == 1) {
            ans = 1;
        } else {
            ans = g + 1;
        }
        for (long i = 2; i <= Math.sqrt(g); i++) {
            if (g % i == 0) {
                if (i * i == g) {
                    ans += i;
                } else {
                    ans += i;
                    ans += g / i;
                }
            }
        }
        System.out.println(ans);
    }
}
0