結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,384 KB
testcase_01 AC 110 ms
52,976 KB
testcase_02 AC 500 ms
114,584 KB
testcase_03 AC 101 ms
53,132 KB
testcase_04 AC 113 ms
54,268 KB
testcase_05 AC 105 ms
52,864 KB
testcase_06 AC 104 ms
52,772 KB
testcase_07 AC 121 ms
54,096 KB
testcase_08 AC 120 ms
54,276 KB
testcase_09 AC 102 ms
54,140 KB
testcase_10 AC 101 ms
52,600 KB
testcase_11 AC 104 ms
53,148 KB
testcase_12 AC 154 ms
54,512 KB
testcase_13 AC 713 ms
139,400 KB
testcase_14 AC 194 ms
61,820 KB
testcase_15 AC 465 ms
104,208 KB
testcase_16 AC 387 ms
90,872 KB
testcase_17 AC 760 ms
139,432 KB
testcase_18 AC 195 ms
61,384 KB
testcase_19 AC 375 ms
84,232 KB
testcase_20 AC 280 ms
74,932 KB
testcase_21 AC 692 ms
138,664 KB
testcase_22 AC 645 ms
127,264 KB
testcase_23 AC 666 ms
124,180 KB
testcase_24 AC 500 ms
108,296 KB
testcase_25 AC 666 ms
122,800 KB
testcase_26 AC 580 ms
117,596 KB
testcase_27 AC 441 ms
104,236 KB
testcase_28 AC 609 ms
121,852 KB
testcase_29 AC 687 ms
128,832 KB
testcase_30 AC 675 ms
130,328 KB
testcase_31 AC 729 ms
136,448 KB
testcase_32 AC 479 ms
110,388 KB
testcase_33 AC 346 ms
81,768 KB
testcase_34 AC 642 ms
127,176 KB
testcase_35 AC 499 ms
110,236 KB
testcase_36 AC 528 ms
116,580 KB
testcase_37 AC 480 ms
108,464 KB
testcase_38 AC 499 ms
114,484 KB
testcase_39 AC 597 ms
118,832 KB
testcase_40 AC 501 ms
114,508 KB
testcase_41 AC 312 ms
79,760 KB
testcase_42 AC 451 ms
107,688 KB
testcase_43 AC 683 ms
127,744 KB
testcase_44 AC 556 ms
116,764 KB
testcase_45 AC 372 ms
83,176 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++;
			}
			map.put((long) i, cnt);
		}
		map.put(x, 1);
		return map;
	}
}
0