結果

問題 No.278 連続する整数の和(2)
ユーザー ぴろずぴろず
提出日時 2015-09-04 22:41:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-06-02 11:44:40
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,156 KB
testcase_01 AC 105 ms
40,064 KB
testcase_02 AC 118 ms
41,112 KB
testcase_03 AC 110 ms
40,988 KB
testcase_04 AC 109 ms
40,804 KB
testcase_05 AC 101 ms
39,756 KB
testcase_06 AC 109 ms
40,952 KB
testcase_07 AC 114 ms
41,304 KB
testcase_08 AC 120 ms
41,184 KB
testcase_09 AC 126 ms
41,148 KB
testcase_10 AC 129 ms
41,140 KB
testcase_11 AC 130 ms
41,436 KB
testcase_12 AC 96 ms
39,700 KB
testcase_13 AC 111 ms
39,916 KB
testcase_14 AC 124 ms
41,216 KB
testcase_15 AC 122 ms
41,240 KB
testcase_16 AC 107 ms
40,068 KB
testcase_17 AC 125 ms
40,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no278;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = n % 2 == 0 ? n / 2 : n;
		long ans = 0;
		for(long i=1;i*i<=m;i++) {
			if (m % i == 0) {
				ans += i;
				if (i * i != m) {
					ans += m / i;
				}
			}
		}
		System.out.println(ans);
	}
	public static long gcd(long a,long b) {
		while(b!=0) {
			long r = a%b;
			a = b;
			b = r;
		}
		return a;
	}
}
0