結果
問題 | No.1152 10億ゲーム |
ユーザー | ks2m |
提出日時 | 2020-08-07 23:15:33 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,937 bytes |
コンパイル時間 | 2,454 ms |
コンパイル使用メモリ | 79,016 KB |
実行使用メモリ | 71,096 KB |
平均クエリ数 | 21.94 |
最終ジャッジ日時 | 2024-07-17 05:15:49 |
合計ジャッジ時間 | 15,970 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 202 ms
69,968 KB |
testcase_01 | AC | 202 ms
69,700 KB |
testcase_02 | AC | 230 ms
70,596 KB |
testcase_03 | AC | 220 ms
69,916 KB |
testcase_04 | AC | 200 ms
69,676 KB |
testcase_05 | AC | 217 ms
69,760 KB |
testcase_06 | AC | 214 ms
69,620 KB |
testcase_07 | AC | 220 ms
69,804 KB |
testcase_08 | AC | 215 ms
70,280 KB |
testcase_09 | AC | 201 ms
69,732 KB |
testcase_10 | AC | 200 ms
69,668 KB |
testcase_11 | AC | 207 ms
69,624 KB |
testcase_12 | AC | 222 ms
69,876 KB |
testcase_13 | AC | 220 ms
69,760 KB |
testcase_14 | AC | 219 ms
69,856 KB |
testcase_15 | AC | 219 ms
69,800 KB |
testcase_16 | AC | 203 ms
69,884 KB |
testcase_17 | AC | 215 ms
69,468 KB |
testcase_18 | AC | 219 ms
69,956 KB |
testcase_19 | AC | 221 ms
70,076 KB |
testcase_20 | AC | 198 ms
69,876 KB |
testcase_21 | AC | 196 ms
69,276 KB |
testcase_22 | AC | 200 ms
69,556 KB |
testcase_23 | AC | 202 ms
69,436 KB |
testcase_24 | AC | 223 ms
70,128 KB |
testcase_25 | AC | 231 ms
70,708 KB |
testcase_26 | AC | 228 ms
70,560 KB |
testcase_27 | AC | 228 ms
70,168 KB |
testcase_28 | AC | 230 ms
70,844 KB |
testcase_29 | AC | 219 ms
69,316 KB |
testcase_30 | AC | 221 ms
69,916 KB |
testcase_31 | AC | 225 ms
69,780 KB |
testcase_32 | AC | 216 ms
69,840 KB |
testcase_33 | AC | 216 ms
69,628 KB |
testcase_34 | AC | 220 ms
69,488 KB |
testcase_35 | AC | 222 ms
69,508 KB |
testcase_36 | AC | 226 ms
69,828 KB |
testcase_37 | AC | 222 ms
69,892 KB |
testcase_38 | AC | 207 ms
69,548 KB |
testcase_39 | AC | 207 ms
69,704 KB |
testcase_40 | AC | 207 ms
69,948 KB |
testcase_41 | AC | 207 ms
69,844 KB |
testcase_42 | AC | 212 ms
69,416 KB |
testcase_43 | AC | 215 ms
69,664 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 213 ms
69,628 KB |
testcase_47 | AC | 218 ms
70,396 KB |
testcase_48 | AC | 201 ms
69,664 KB |
testcase_49 | AC | 207 ms
69,708 KB |
ソースコード
import java.util.HashMap; import java.util.Map; import java.util.NoSuchElementException; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); Map<Integer, Integer> mapx = bunkai(x); int x2 = mapx.getOrDefault(2, 0); int x5 = mapx.getOrDefault(5, 0); Map<Integer, Integer> mapy = bunkai(y); int y2 = mapy.getOrDefault(2, 0); int y5 = mapy.getOrDefault(5, 0); for (int i = 0; i < 35; i++) { if ((x2 + x5 - y2 - y5) % 2 == 0) { if (x5 < y5) { x5++; } else if (x2 < 7) { x2++; } else { x5++; } } else if (x5 < y5) { x5++; } else if (x2 < y2) { x2++; } else { if (x2 - y2 > x5 - y5) { x2--; } else { x5--; } } x = calc(x2, x5); System.out.println(x); if (x == y) { break; } mapx = bunkai(x); x2 = mapx.getOrDefault(2, 0); x5 = mapx.getOrDefault(5, 0); try { y = sc.nextInt(); } catch (NoSuchElementException e) { break; } if (x == y) { break; } mapy = bunkai(y); y2 = mapy.getOrDefault(2, 0); y5 = mapy.getOrDefault(5, 0); } sc.close(); } static int calc(int x2, int x5) { return Math.min(power(2, x2) * power(5, x5), 1000000000); } static int power(int x, int n) { if (n == 0) { return 1; } int val = power(x, n / 2); val = val * val; if (n % 2 == 1) { val = val * x; } return val; } static Map<Integer, Integer> bunkai(int n) { Map<Integer, Integer> soinsu = new HashMap<>(); int end = (int) Math.sqrt(n); int d = 2; while (n > 1) { if (n % d == 0) { n /= d; if (soinsu.containsKey(d)) { soinsu.put(d, soinsu.get(d) + 1); } else { soinsu.put(d, 1); } end = (int) Math.sqrt(n); } else { if (d > end) { d = n - 1; } d++; } } return soinsu; } }