結果

問題 No.278 連続する整数の和(2)
ユーザー nanophoto12nanophoto12
提出日時 2015-09-13 17:30:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 45,396 KB
最終ジャッジ日時 2024-07-19 06:23:01
合計ジャッジ時間 5,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,032 KB
testcase_01 AC 130 ms
41,288 KB
testcase_02 AC 167 ms
45,396 KB
testcase_03 AC 129 ms
41,032 KB
testcase_04 AC 128 ms
41,008 KB
testcase_05 AC 137 ms
41,508 KB
testcase_06 AC 138 ms
41,740 KB
testcase_07 AC 141 ms
41,960 KB
testcase_08 WA -
testcase_09 AC 169 ms
45,200 KB
testcase_10 AC 172 ms
45,188 KB
testcase_11 AC 177 ms
45,192 KB
testcase_12 AC 134 ms
40,792 KB
testcase_13 AC 176 ms
45,076 KB
testcase_14 AC 164 ms
45,024 KB
testcase_15 AC 164 ms
45,184 KB
testcase_16 AC 163 ms
45,240 KB
testcase_17 AC 161 ms
44,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package com.company;

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        Long value = scanner.nextLong();
        if(value % 2 == 0)
        {
            value /=2;
        }
        double root = Math.sqrt((double) value);
        Long sum = 0L;
        for(Long i = 1L; i <= root;i++)
        {
            if(value % i == 0)
            {
                Long other = value / i;
                if(i == other)
                {
                    sum += i;
                }
                else
                {
                    sum += i + other;
                }
            }
        }

        System.out.println(sum.toString());
    }
}
0