結果

問題 No.278 連続する整数の和(2)
ユーザー GrenacheGrenache
提出日時 2015-09-05 09:24:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-02 11:47:48
合計ジャッジ時間 6,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,136 KB
testcase_01 AC 110 ms
40,244 KB
testcase_02 AC 139 ms
41,260 KB
testcase_03 AC 109 ms
40,352 KB
testcase_04 AC 117 ms
39,864 KB
testcase_05 AC 113 ms
40,828 KB
testcase_06 AC 126 ms
41,460 KB
testcase_07 AC 124 ms
41,248 KB
testcase_08 AC 122 ms
40,096 KB
testcase_09 AC 127 ms
40,280 KB
testcase_10 AC 144 ms
41,228 KB
testcase_11 AC 139 ms
41,112 KB
testcase_12 AC 121 ms
41,156 KB
testcase_13 AC 134 ms
41,120 KB
testcase_14 AC 132 ms
41,308 KB
testcase_15 AC 131 ms
41,124 KB
testcase_16 AC 137 ms
41,516 KB
testcase_17 AC 135 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder278_1 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n = sc.nextLong();

        if (n == 1) {
        } else if (n % 2 == 1) {
        } else {
        	n = n / 2;
        }

        if (n != 1) {
        	long ret = 0;
        	for (long j = 1; j * j <= n; j++) {
        		if (n % j == 0) {
        			ret += j;
        			if (j != n / j) {
        				ret += n / j;
        			}
        		}
        	}
		
        	System.out.println(ret);
        } else {
        	System.out.println("1");
        }
		
		sc.close();
    }
}
0