結果

問題 No.278 連続する整数の和(2)
ユーザー uafr_csuafr_cs
提出日時 2015-09-04 23:03:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 78,284 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-06-02 11:45:23
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,952 KB
testcase_01 AC 101 ms
40,280 KB
testcase_02 AC 129 ms
41,408 KB
testcase_03 AC 115 ms
41,360 KB
testcase_04 AC 103 ms
40,012 KB
testcase_05 AC 108 ms
40,680 KB
testcase_06 AC 106 ms
40,240 KB
testcase_07 AC 119 ms
41,560 KB
testcase_08 AC 122 ms
41,144 KB
testcase_09 AC 131 ms
41,404 KB
testcase_10 AC 117 ms
40,124 KB
testcase_11 AC 132 ms
41,208 KB
testcase_12 AC 115 ms
41,180 KB
testcase_13 AC 126 ms
40,920 KB
testcase_14 AC 124 ms
41,048 KB
testcase_15 AC 116 ms
40,240 KB
testcase_16 AC 113 ms
40,208 KB
testcase_17 AC 115 ms
40,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static long gcd(long a, long b){
		return b == 0 ? a : gcd(b, a % b);
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		final BigInteger N_big = BigInteger.valueOf(N);
		
		final BigInteger const_num = N_big.multiply((N_big.subtract(BigInteger.ONE))).divide(BigInteger.ONE.add(BigInteger.ONE));
		
		
		final long max = N_big.gcd(const_num).longValue();
		//System.out.println(max);
		final long sqrt = (long)(Math.floor(Math.sqrt(max)));
		
		long answer = 0;
		for(long div_fst = 1; div_fst <= sqrt; div_fst++){
			if(max % div_fst != 0) { continue; }
			
			final long div_snd = max / div_fst;
			if(div_fst > div_snd){ break; }
			//System.out.println(div_fst + " " + div_snd);
			
			answer += div_fst;
			if(div_fst < div_snd){
				answer += div_snd;
			}
		}
		
		System.out.println(answer);
		
	}

}
0