結果

問題 No.300 平方数
ユーザー htensaihtensai
提出日時 2019-11-22 19:19:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 780 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 76,324 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-10-11 02:39:10
合計ジャッジ時間 10,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,720 KB
testcase_01 AC 136 ms
53,892 KB
testcase_02 AC 143 ms
53,812 KB
testcase_03 AC 136 ms
53,848 KB
testcase_04 AC 139 ms
54,120 KB
testcase_05 AC 139 ms
54,212 KB
testcase_06 AC 140 ms
53,936 KB
testcase_07 AC 139 ms
54,264 KB
testcase_08 AC 141 ms
54,104 KB
testcase_09 AC 140 ms
53,748 KB
testcase_10 AC 137 ms
54,140 KB
testcase_11 AC 139 ms
53,920 KB
testcase_12 AC 139 ms
54,040 KB
testcase_13 AC 157 ms
53,992 KB
testcase_14 AC 139 ms
53,816 KB
testcase_15 AC 138 ms
53,864 KB
testcase_16 AC 138 ms
54,240 KB
testcase_17 AC 139 ms
53,816 KB
testcase_18 AC 141 ms
54,020 KB
testcase_19 AC 141 ms
54,100 KB
testcase_20 AC 142 ms
54,120 KB
testcase_21 AC 142 ms
54,108 KB
testcase_22 AC 138 ms
53,944 KB
testcase_23 AC 145 ms
53,752 KB
testcase_24 AC 147 ms
54,364 KB
testcase_25 AC 154 ms
54,124 KB
testcase_26 AC 146 ms
54,416 KB
testcase_27 AC 146 ms
54,132 KB
testcase_28 AC 154 ms
54,176 KB
testcase_29 AC 151 ms
54,132 KB
testcase_30 AC 137 ms
53,824 KB
testcase_31 AC 143 ms
53,992 KB
testcase_32 AC 138 ms
53,980 KB
testcase_33 AC 148 ms
54,408 KB
testcase_34 AC 154 ms
54,080 KB
testcase_35 AC 151 ms
54,192 KB
testcase_36 AC 148 ms
54,056 KB
testcase_37 AC 145 ms
53,916 KB
testcase_38 AC 135 ms
54,148 KB
testcase_39 AC 141 ms
54,196 KB
testcase_40 AC 141 ms
53,940 KB
testcase_41 AC 149 ms
53,964 KB
testcase_42 AC 137 ms
54,308 KB
testcase_43 AC 140 ms
54,212 KB
testcase_44 AC 139 ms
53,836 KB
testcase_45 AC 139 ms
55,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		HashMap<Long, Integer> map = new HashMap<>();
		for (long i = 2; i <= Math.sqrt(x); i++) {
		    while (x % i == 0) {
		        if (map.containsKey(i)) {
		            map.put(i, map.get(i) + 1);
		        } else {
		            map.put(i, 1);
		        }
		        x /= i;
		    }
		}
		if (x != 1) {
	        if (map.containsKey(x)) {
	            map.put(x, map.get(x) + 1);
	        } else {
	            map.put(x, 1);
	        }
		}
		long ans = 1;
		for (Map.Entry<Long, Integer> entry : map.entrySet()) {
		    if (entry.getValue() % 2 == 1) {
		        ans *= entry.getKey();
		    }
		}
		System.out.println(ans);
	}
}
0