結果

問題 No.1737 One to N
ユーザー ks2mks2m
提出日時 2021-11-12 21:33:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 79,200 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-25 12:25:13
合計ジャッジ時間 7,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,028 KB
testcase_01 AC 132 ms
54,252 KB
testcase_02 AC 131 ms
53,596 KB
testcase_03 AC 133 ms
54,224 KB
testcase_04 AC 132 ms
54,172 KB
testcase_05 AC 130 ms
53,684 KB
testcase_06 AC 132 ms
53,824 KB
testcase_07 AC 121 ms
52,592 KB
testcase_08 AC 131 ms
53,792 KB
testcase_09 AC 132 ms
54,088 KB
testcase_10 AC 135 ms
53,644 KB
testcase_11 AC 131 ms
53,728 KB
testcase_12 AC 134 ms
54,252 KB
testcase_13 AC 134 ms
53,944 KB
testcase_14 AC 135 ms
54,252 KB
testcase_15 AC 132 ms
53,916 KB
testcase_16 AC 128 ms
54,244 KB
testcase_17 AC 129 ms
53,760 KB
testcase_18 AC 115 ms
52,732 KB
testcase_19 AC 133 ms
54,324 KB
testcase_20 AC 108 ms
52,560 KB
testcase_21 AC 127 ms
54,104 KB
testcase_22 AC 129 ms
53,856 KB
testcase_23 AC 125 ms
54,256 KB
testcase_24 AC 115 ms
52,772 KB
testcase_25 AC 124 ms
54,260 KB
testcase_26 AC 130 ms
54,208 KB
testcase_27 AC 122 ms
52,632 KB
testcase_28 AC 126 ms
54,180 KB
testcase_29 AC 125 ms
53,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		if (n == 1) {
			System.out.println(0);
		} else {
			Map<Integer, Integer> soinsu = bunkai(n);
			int ans = 0;
			for (int k : soinsu.keySet()) {
				ans += k * soinsu.get(k);
			}
			System.out.println(ans);
		}
	}

	static Map<Integer, Integer> bunkai(int n) {
		Map<Integer, Integer> soinsu = new HashMap<>();
		int end = (int) Math.sqrt(n);
		int d = 2;
		while (n > 1) {
			if (n % d == 0) {
				n /= d;
				soinsu.put(d, soinsu.getOrDefault(d, 0) + 1);
				end = (int) Math.sqrt(n);
			} else {
				if (d > end) {
					d = n - 1;
				}
				d++;
			}
		}
		return soinsu;
	}
}
0