結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | tenten |
提出日時 | 2020-08-20 14:47:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 154 ms / 2,000 ms |
コード長 | 990 bytes |
コンパイル時間 | 4,424 ms |
コンパイル使用メモリ | 79,644 KB |
実行使用メモリ | 42,344 KB |
最終ジャッジ日時 | 2024-10-13 10:05:20 |
合計ジャッジ時間 | 6,427 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
42,232 KB |
testcase_01 | AC | 146 ms
42,060 KB |
testcase_02 | AC | 145 ms
41,568 KB |
testcase_03 | AC | 151 ms
42,188 KB |
testcase_04 | AC | 151 ms
42,164 KB |
testcase_05 | AC | 150 ms
42,052 KB |
testcase_06 | AC | 150 ms
42,344 KB |
testcase_07 | AC | 150 ms
42,044 KB |
testcase_08 | AC | 149 ms
42,316 KB |
testcase_09 | AC | 138 ms
41,864 KB |
testcase_10 | AC | 148 ms
42,056 KB |
testcase_11 | AC | 154 ms
42,148 KB |
testcase_12 | AC | 146 ms
42,080 KB |
testcase_13 | AC | 146 ms
42,104 KB |
testcase_14 | AC | 147 ms
42,200 KB |
testcase_15 | AC | 136 ms
42,100 KB |
testcase_16 | AC | 132 ms
41,904 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int x = n; HashMap<Integer, Integer> map = new HashMap<>(); for (int 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); } } int ans = 1; for (Map.Entry<Integer, Integer> entry : map.entrySet()) { for (int i = 2; i <= entry.getValue(); i += 2) { ans *= entry.getKey(); } } System.out.println(ans + " " + n / ans / ans); } }