結果
問題 |
No.1723 [Cherry 3rd Tune *] Dead on
|
ユーザー |
![]() |
提出日時 | 2024-07-29 17:23:52 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 116 ms / 2,000 ms |
コード長 | 1,868 bytes |
コンパイル時間 | 3,628 ms |
コンパイル使用メモリ | 79,776 KB |
実行使用メモリ | 52,760 KB |
最終ジャッジ日時 | 2024-07-29 17:24:01 |
合計ジャッジ時間 | 7,986 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); Map<Long, Integer> x = getMap(sc.nextLong()); long a = sc.nextLong(); Map<Long, Integer> y = getMap(sc.nextLong()); long b = sc.nextLong(); for (long n : y.keySet()) { if (y.get(n) * b > x.getOrDefault(n, 0) * a) { System.out.println("No"); return; } } System.out.println("Yes"); } static Map<Long, Integer> getMap(long x) { Map<Long, Integer> ans = new HashMap<>(); for (long i = 2; i <= Math.sqrt(x); i++) { while (x % i == 0) { ans.put(i, ans.getOrDefault(i, 0) + 1); x /= i; } } if (x > 1) { ans.put(x, ans.getOrDefault(x, 0) + 1); } return ans; } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }