結果

問題 No.278 連続する整数の和(2)
ユーザー nanophoto12nanophoto12
提出日時 2015-09-13 17:36:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 56,712 KB
最終ジャッジ日時 2024-06-02 11:50:13
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,412 KB
testcase_01 AC 107 ms
52,520 KB
testcase_02 AC 137 ms
56,468 KB
testcase_03 AC 110 ms
52,756 KB
testcase_04 AC 94 ms
52,708 KB
testcase_05 AC 109 ms
53,668 KB
testcase_06 AC 110 ms
52,656 KB
testcase_07 AC 105 ms
52,976 KB
testcase_08 AC 141 ms
56,396 KB
testcase_09 AC 143 ms
56,712 KB
testcase_10 AC 138 ms
56,576 KB
testcase_11 AC 132 ms
56,584 KB
testcase_12 AC 99 ms
53,132 KB
testcase_13 AC 127 ms
56,100 KB
testcase_14 AC 132 ms
55,080 KB
testcase_15 AC 136 ms
55,296 KB
testcase_16 AC 121 ms
55,724 KB
testcase_17 AC 129 ms
56,516 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;
        }
        Long sum = 0L;
        for(Long i = 1L; i * i <= value;i++)
        {
            if(value % i == 0)
            {
                Long other = value / i;
                sum += i;
                if(i < other)
                {
                    sum += other;
                }
            }
        }

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