結果

問題 No.300 平方数
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-03 21:48:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 740 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 76,128 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-11-20 19:36:34
合計ジャッジ時間 8,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,988 KB
testcase_01 AC 120 ms
54,004 KB
testcase_02 AC 122 ms
53,988 KB
testcase_03 AC 101 ms
52,852 KB
testcase_04 AC 100 ms
52,820 KB
testcase_05 AC 115 ms
54,076 KB
testcase_06 AC 116 ms
53,932 KB
testcase_07 AC 99 ms
52,752 KB
testcase_08 AC 117 ms
53,956 KB
testcase_09 AC 112 ms
54,120 KB
testcase_10 AC 109 ms
53,808 KB
testcase_11 AC 111 ms
53,964 KB
testcase_12 AC 109 ms
54,172 KB
testcase_13 AC 127 ms
54,132 KB
testcase_14 AC 118 ms
54,192 KB
testcase_15 AC 117 ms
54,084 KB
testcase_16 AC 118 ms
54,024 KB
testcase_17 AC 122 ms
54,128 KB
testcase_18 AC 114 ms
54,056 KB
testcase_19 AC 120 ms
54,024 KB
testcase_20 AC 131 ms
53,996 KB
testcase_21 AC 132 ms
54,012 KB
testcase_22 AC 116 ms
53,208 KB
testcase_23 AC 121 ms
54,172 KB
testcase_24 AC 122 ms
53,696 KB
testcase_25 AC 113 ms
52,592 KB
testcase_26 AC 135 ms
54,432 KB
testcase_27 AC 130 ms
53,876 KB
testcase_28 AC 124 ms
54,172 KB
testcase_29 AC 124 ms
54,064 KB
testcase_30 AC 128 ms
54,224 KB
testcase_31 AC 128 ms
54,124 KB
testcase_32 AC 112 ms
53,180 KB
testcase_33 AC 120 ms
54,112 KB
testcase_34 AC 131 ms
54,080 KB
testcase_35 AC 127 ms
54,160 KB
testcase_36 AC 128 ms
54,280 KB
testcase_37 AC 125 ms
54,164 KB
testcase_38 AC 114 ms
52,888 KB
testcase_39 AC 127 ms
54,092 KB
testcase_40 AC 130 ms
54,116 KB
testcase_41 AC 131 ms
54,096 KB
testcase_42 AC 138 ms
54,156 KB
testcase_43 AC 140 ms
54,112 KB
testcase_44 AC 130 ms
54,176 KB
testcase_45 AC 126 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		long x = scanner.nextLong();
		Map<Long, Integer> map = prime_fact(x);
		long ans = 1;
		for (long key : map.keySet()) {
			if (map.get(key) % 2 == 1) {
				ans *= key;
			}
		}
		System.out.println(ans);
	}

	private static Map<Long, Integer> prime_fact(long x) {
		Map<Long, Integer> map = new TreeMap<>();
		double d = Math.sqrt(x);
		for (int i = 2; i <= d; i++) {
			int cnt = 0;
			while (x % i == 0) {
				x /= i;
				cnt++;
			}
			if(cnt!=0) {
				map.put((long) i, cnt);
			}
		}
		map.put(x, 1);
		return map;
	}
}
0