結果

問題 No.278 連続する整数の和(2)
ユーザー nanophoto12nanophoto12
提出日時 2015-09-13 15:04:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 45,432 KB
最終ジャッジ日時 2024-07-19 06:22:40
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,128 KB
testcase_01 WA -
testcase_02 AC 144 ms
45,124 KB
testcase_03 AC 110 ms
40,932 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 113 ms
41,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 138 ms
45,280 KB
testcase_10 AC 130 ms
45,064 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 126 ms
45,364 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 130 ms
45,372 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();
        double root = Math.sqrt((double) value);
        Long sum = 0L;
        for(Long i = 1L; i <= root;i++)
        {
            if(value % i == 0)
            {
                sum += i + (value / i);
            }
        }

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