結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー tenten
提出日時 2021-11-01 15:12:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,883 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-10-10 04:42:05
合計ジャッジ時間 7,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long x = sc.nextLong();
        long a = sc.nextLong();
        HashMap<Long, Integer> xMap = new HashMap<>();
        for (long i = 2; i <= Math.sqrt(x); i++) {
            while (x % i == 0) {
                xMap.put(i, xMap.getOrDefault(i, 0) + 1);
                x /= i;
            }
        }
        if (x > 1) {
            xMap.put(x, xMap.getOrDefault(x, 0) + 1);
        }
        long y = sc.nextLong();
        long b = sc.nextLong();
        for (long i = 2; i <= Math.sqrt(y); i++) {
            int count = 0;
            while (y % i == 0) {
                count++;
                y /= i;
            }
            if (count == 0) {
                continue;
            }
            if (xMap.getOrDefault(i, 0) * a < count * b) {
                System.out.println("No");
                return;
            }
        }
        if (y > 1) {
            if (xMap.getOrDefault(y, 0) * a < b) {
                System.out.println("No");
                return;
            }
        }
        System.out.println("Yes");
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0