結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー tentententen
提出日時 2024-04-24 17:17:11
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,804 KB
testcase_01 AC 56 ms
49,912 KB
testcase_02 AC 56 ms
49,820 KB
testcase_03 AC 56 ms
50,240 KB
testcase_04 AC 59 ms
49,704 KB
testcase_05 AC 58 ms
49,640 KB
testcase_06 AC 56 ms
49,768 KB
testcase_07 AC 56 ms
50,096 KB
testcase_08 AC 60 ms
50,436 KB
testcase_09 AC 56 ms
50,204 KB
testcase_10 AC 63 ms
50,056 KB
testcase_11 AC 56 ms
50,248 KB
testcase_12 AC 57 ms
49,992 KB
testcase_13 AC 56 ms
50,240 KB
testcase_14 AC 56 ms
50,080 KB
testcase_15 AC 77 ms
51,352 KB
testcase_16 AC 66 ms
50,440 KB
testcase_17 AC 79 ms
51,316 KB
testcase_18 AC 71 ms
50,956 KB
testcase_19 AC 66 ms
50,568 KB
testcase_20 AC 60 ms
49,908 KB
testcase_21 AC 76 ms
51,452 KB
testcase_22 AC 62 ms
50,128 KB
testcase_23 AC 66 ms
50,808 KB
testcase_24 AC 55 ms
50,128 KB
testcase_25 AC 71 ms
51,208 KB
testcase_26 AC 59 ms
50,436 KB
testcase_27 AC 54 ms
50,192 KB
testcase_28 AC 76 ms
51,452 KB
testcase_29 AC 73 ms
50,464 KB
testcase_30 AC 76 ms
51,344 KB
testcase_31 AC 70 ms
50,944 KB
testcase_32 AC 60 ms
50,024 KB
testcase_33 AC 56 ms
50,308 KB
testcase_34 AC 55 ms
50,020 KB
testcase_35 AC 56 ms
50,052 KB
testcase_36 AC 84 ms
51,216 KB
testcase_37 AC 59 ms
50,228 KB
testcase_38 AC 56 ms
50,404 KB
testcase_39 AC 56 ms
50,120 KB
testcase_40 AC 57 ms
50,220 KB
testcase_41 AC 56 ms
49,856 KB
testcase_42 AC 57 ms
50,144 KB
testcase_43 AC 56 ms
49,796 KB
testcase_44 AC 57 ms
50,420 KB
testcase_45 AC 57 ms
50,296 KB
testcase_46 AC 56 ms
50,256 KB
testcase_47 AC 57 ms
49,684 KB
testcase_48 AC 56 ms
50,128 KB
testcase_49 AC 56 ms
49,812 KB
権限があれば一括ダウンロードができます

ソースコード

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