結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,376 KB
testcase_01 AC 54 ms
50,456 KB
testcase_02 AC 54 ms
50,396 KB
testcase_03 AC 55 ms
50,172 KB
testcase_04 AC 77 ms
51,476 KB
testcase_05 AC 65 ms
51,300 KB
testcase_06 AC 57 ms
50,424 KB
testcase_07 AC 55 ms
50,320 KB
testcase_08 AC 79 ms
50,928 KB
testcase_09 AC 54 ms
50,040 KB
testcase_10 AC 61 ms
50,396 KB
testcase_11 AC 54 ms
49,820 KB
testcase_12 AC 56 ms
50,016 KB
testcase_13 AC 53 ms
49,992 KB
testcase_14 AC 54 ms
50,248 KB
testcase_15 AC 89 ms
51,768 KB
testcase_16 AC 82 ms
51,620 KB
testcase_17 AC 90 ms
51,576 KB
testcase_18 AC 86 ms
51,872 KB
testcase_19 AC 74 ms
51,300 KB
testcase_20 AC 58 ms
49,912 KB
testcase_21 AC 83 ms
51,580 KB
testcase_22 AC 69 ms
51,272 KB
testcase_23 AC 60 ms
50,412 KB
testcase_24 AC 53 ms
50,060 KB
testcase_25 AC 84 ms
52,008 KB
testcase_26 AC 57 ms
50,488 KB
testcase_27 AC 53 ms
49,944 KB
testcase_28 AC 88 ms
51,708 KB
testcase_29 AC 69 ms
51,452 KB
testcase_30 AC 77 ms
51,800 KB
testcase_31 AC 82 ms
52,096 KB
testcase_32 AC 57 ms
50,452 KB
testcase_33 AC 53 ms
50,144 KB
testcase_34 AC 53 ms
50,336 KB
testcase_35 AC 55 ms
50,032 KB
testcase_36 AC 98 ms
51,788 KB
testcase_37 AC 62 ms
50,276 KB
testcase_38 AC 54 ms
50,028 KB
testcase_39 AC 53 ms
49,892 KB
testcase_40 AC 55 ms
50,192 KB
testcase_41 AC 54 ms
50,224 KB
testcase_42 AC 53 ms
50,416 KB
testcase_43 AC 54 ms
50,116 KB
testcase_44 AC 54 ms
49,960 KB
testcase_45 AC 54 ms
50,260 KB
testcase_46 AC 54 ms
50,312 KB
testcase_47 AC 53 ms
50,248 KB
testcase_48 AC 54 ms
50,256 KB
testcase_49 AC 54 ms
49,908 KB
権限があれば一括ダウンロードができます

ソースコード

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