結果
問題 | No.442 和と積 |
ユーザー | htensai |
提出日時 | 2019-11-19 12:48:11 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,711 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 79,340 KB |
実行使用メモリ | 61,852 KB |
最終ジャッジ日時 | 2024-10-03 06:26:20 |
合計ジャッジ時間 | 8,084 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
47,748 KB |
testcase_01 | AC | 124 ms
41,428 KB |
testcase_02 | AC | 113 ms
41,168 KB |
testcase_03 | AC | 160 ms
42,700 KB |
testcase_04 | AC | 131 ms
41,256 KB |
testcase_05 | AC | 130 ms
41,292 KB |
testcase_06 | AC | 128 ms
41,144 KB |
testcase_07 | AC | 137 ms
41,976 KB |
testcase_08 | AC | 124 ms
41,552 KB |
testcase_09 | AC | 145 ms
41,656 KB |
testcase_10 | AC | 114 ms
41,272 KB |
testcase_11 | AC | 125 ms
41,220 KB |
testcase_12 | AC | 124 ms
41,564 KB |
testcase_13 | AC | 124 ms
41,508 KB |
testcase_14 | AC | 122 ms
41,544 KB |
testcase_15 | AC | 127 ms
41,536 KB |
testcase_16 | AC | 126 ms
41,368 KB |
testcase_17 | AC | 109 ms
41,548 KB |
testcase_18 | AC | 114 ms
41,372 KB |
testcase_19 | AC | 151 ms
41,684 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> pMap = new HashMap<>(); for (long i = 2; i <= Math.sqrt(a); i++) { while (a % i == 0) { if (pMap.containsKey(i)) { pMap.put(i, pMap.get(i) + 1); } else { pMap.put(i, 1); } a /= i; } } if (a != 1) { if (pMap.containsKey(a)) { pMap.put(a, pMap.get(a) + 1); } else { pMap.put(a, 1); } } for (long i = 2; i <= Math.sqrt(b); i++) { while (b % i == 0) { if (pMap.containsKey(i)) { pMap.put(i, pMap.get(i) + 1); } else { pMap.put(i, 1); } b /= i; } } if (b != 1) { if (pMap.containsKey(b)) { pMap.put(b, pMap.get(b) + 1); } else { pMap.put(b, 1); } } HashMap<Long, Integer> sMap = new HashMap<>(); for (long i = 2; i <= Math.sqrt(c); i++) { while (c % i == 0) { if (sMap.containsKey(i)) { sMap.put(i, sMap.get(i) + 1); } else { sMap.put(i, 1); } c /= i; } } if (c != 1) { if (sMap.containsKey(c)) { sMap.put(c, pMap.get(c) + 1); } else { sMap.put(c, 1); } } long ans = 1; for (Map.Entry<Long, Integer> entry : sMap.entrySet()) { long x = entry.getKey(); if (pMap.containsKey(x)) { ans *= (long)(Math.pow(x, Math.min(pMap.get(x), entry.getValue()))); } } System.out.println(ans); } }