結果
問題 | No.442 和と積 |
ユーザー | htensai |
提出日時 | 2019-12-10 11:12:29 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,107 bytes |
コンパイル時間 | 2,351 ms |
コンパイル使用メモリ | 79,848 KB |
実行使用メモリ | 47,452 KB |
最終ジャッジ日時 | 2024-06-23 23:35:48 |
合計ジャッジ時間 | 8,170 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
47,344 KB |
testcase_01 | AC | 131 ms
41,212 KB |
testcase_02 | AC | 115 ms
40,364 KB |
testcase_03 | AC | 149 ms
42,760 KB |
testcase_04 | AC | 130 ms
41,320 KB |
testcase_05 | AC | 119 ms
40,852 KB |
testcase_06 | AC | 129 ms
41,324 KB |
testcase_07 | AC | 155 ms
41,724 KB |
testcase_08 | AC | 123 ms
41,624 KB |
testcase_09 | AC | 145 ms
41,772 KB |
testcase_10 | AC | 125 ms
41,684 KB |
testcase_11 | AC | 116 ms
40,028 KB |
testcase_12 | AC | 130 ms
41,388 KB |
testcase_13 | AC | 128 ms
41,756 KB |
testcase_14 | AC | 130 ms
41,180 KB |
testcase_15 | AC | 135 ms
41,632 KB |
testcase_16 | AC | 129 ms
41,292 KB |
testcase_17 | AC | 113 ms
40,076 KB |
testcase_18 | AC | 128 ms
41,240 KB |
testcase_19 | AC | 139 ms
41,716 KB |
testcase_20 | TLE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); long c = a + b; HashMap<Long, Integer> mapX = new HashMap<>(); for (long i = 2; i <= Math.sqrt(c); i++) { while (c % i == 0) { if (mapX.containsKey(i)) { mapX.put(i, mapX.get(i) + 1); } else { mapX.put(i, 1); } c /= i; } } if (c != 1) { if (mapX.containsKey(c)) { mapX.put(c, mapX.get(c) + 1); } else { mapX.put(c, 1); } } HashMap<Long, Integer> mapY = new HashMap<>(); for (long i = 2; i <= Math.sqrt(a); i++) { while (a % i == 0) { if (mapY.containsKey(i)) { mapY.put(i, mapY.get(i) + 1); } else { mapY.put(i, 1); } a /= i; } } if (a != 1) { if (mapY.containsKey(a)) { mapY.put(a, mapY.get(a) + 1); } else { mapY.put(a, 1); } } for (long i = 2; i <= Math.sqrt(b); i++) { while (b % i == 0) { if (mapY.containsKey(i)) { mapY.put(i, mapY.get(i) + 1); } else { mapY.put(i, 1); } b /= i; } } if (b != 1) { if (mapY.containsKey(b)) { mapY.put(b, mapY.get(b) + 1); } else { mapY.put(b, 1); } } long ans = 1; for (Map.Entry<Long, Integer> entry : mapX.entrySet()) { if (mapY.containsKey(entry.getKey())) { ans *= (long)(Math.pow(entry.getKey(), Math.min(entry.getValue(), mapY.get(entry.getKey())))); } } System.out.println(ans); } }