結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー tenten
提出日時 2024-04-24 17:17:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,882 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 79,028 KB
実行使用メモリ 51,452 KB
最終ジャッジ日時 2024-11-07 02:01:14
合計ジャッジ時間 7,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        long x = sc.nextLong();
        long a = sc.nextLong();
        long y = sc.nextLong();
        long b = sc.nextLong();
        Map<Long, Integer> counts = new HashMap<>();
        for (long i = 2; i <= Math.sqrt(y); i++) {
            while (y % i == 0) {
                counts.put(i, counts.getOrDefault(i, 0) + 1);
                y /= i;
            }
        }
        if (y > 1) {
            counts.put(y, counts.getOrDefault(y, 0) + 1);
        }
        for (long d : counts.keySet()) {
            int current = 0;
            while (x % d == 0) {
                current++;
                x /= d;
            }
            if (counts.get(d) * b > current * a) {
                System.out.println("No");
                return;
            }
        }
        System.out.println("Yes");
    }
}
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();
        }
    }
    
}
0