結果

問題 No.278 連続する整数の和(2)
ユーザー GrenacheGrenache
提出日時 2015-09-04 23:09:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 78,068 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-06-02 11:46:00
合計ジャッジ時間 5,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,040 KB
testcase_01 AC 106 ms
41,464 KB
testcase_02 AC 122 ms
41,384 KB
testcase_03 AC 107 ms
41,344 KB
testcase_04 AC 111 ms
40,236 KB
testcase_05 AC 106 ms
41,464 KB
testcase_06 AC 99 ms
41,344 KB
testcase_07 AC 108 ms
41,372 KB
testcase_08 AC 112 ms
41,564 KB
testcase_09 AC 122 ms
41,232 KB
testcase_10 AC 129 ms
40,416 KB
testcase_11 AC 126 ms
41,748 KB
testcase_12 AC 105 ms
41,732 KB
testcase_13 AC 132 ms
41,428 KB
testcase_14 AC 117 ms
41,272 KB
testcase_15 AC 119 ms
41,144 KB
testcase_16 AC 118 ms
40,408 KB
testcase_17 AC 129 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;


public class Main_yukicoder278 {

    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;
        }

		Map<Long, Integer> hm = new HashMap<Long, Integer>();
		long nn = n;
		for (long j = 2; j * j <= nn; j++) {
			while (n % j == 0) {
				if (hm.containsKey(j)) {
					hm.put(j, hm.get(j) + 1);
				} else {
					hm.put(j, 1);
				}
				n /= j;
			}
		}
		if (n != 1) {
			if (hm.containsKey(n)) {
				hm.put(n, hm.get(n) + 1);
			} else {
				hm.put(n, 1);
			}
		}

		long ret = 1;
		for (Map.Entry<Long, Integer> e : hm.entrySet()) {
			long tmp = 1;
			long tmp2 = 1;
			for (int i = 0; i < e.getValue(); i++) {
				tmp *= e.getKey();
				tmp2 += tmp;
			}
			ret *= tmp2;
		}
		
		System.out.println(ret);
		
		sc.close();
    }
}
0