結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー tentententen
提出日時 2022-08-09 08:25:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,752 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 86,372 KB
実行使用メモリ 52,688 KB
最終ジャッジ日時 2024-09-19 15:45:29
合計ジャッジ時間 7,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,848 KB
testcase_01 AC 53 ms
50,296 KB
testcase_02 AC 54 ms
50,336 KB
testcase_03 AC 55 ms
50,356 KB
testcase_04 AC 76 ms
51,244 KB
testcase_05 AC 63 ms
50,556 KB
testcase_06 AC 57 ms
50,420 KB
testcase_07 AC 53 ms
50,340 KB
testcase_08 AC 64 ms
50,928 KB
testcase_09 AC 54 ms
50,228 KB
testcase_10 AC 67 ms
50,680 KB
testcase_11 AC 55 ms
50,244 KB
testcase_12 AC 56 ms
49,996 KB
testcase_13 AC 54 ms
50,116 KB
testcase_14 AC 54 ms
50,208 KB
testcase_15 AC 93 ms
51,732 KB
testcase_16 AC 68 ms
50,660 KB
testcase_17 AC 92 ms
51,812 KB
testcase_18 AC 93 ms
51,924 KB
testcase_19 AC 74 ms
51,156 KB
testcase_20 AC 64 ms
50,756 KB
testcase_21 AC 94 ms
52,304 KB
testcase_22 AC 66 ms
50,788 KB
testcase_23 AC 81 ms
51,336 KB
testcase_24 AC 54 ms
50,292 KB
testcase_25 AC 94 ms
52,236 KB
testcase_26 AC 64 ms
50,712 KB
testcase_27 AC 54 ms
50,268 KB
testcase_28 AC 100 ms
52,544 KB
testcase_29 AC 90 ms
51,912 KB
testcase_30 AC 103 ms
52,688 KB
testcase_31 AC 90 ms
51,788 KB
testcase_32 AC 64 ms
50,720 KB
testcase_33 AC 54 ms
50,192 KB
testcase_34 AC 54 ms
50,208 KB
testcase_35 AC 55 ms
50,128 KB
testcase_36 AC 89 ms
51,504 KB
testcase_37 AC 54 ms
50,368 KB
testcase_38 AC 53 ms
49,852 KB
testcase_39 AC 53 ms
49,836 KB
testcase_40 AC 54 ms
49,980 KB
testcase_41 AC 55 ms
50,416 KB
testcase_42 AC 54 ms
50,496 KB
testcase_43 AC 53 ms
50,096 KB
testcase_44 AC 53 ms
50,332 KB
testcase_45 AC 53 ms
50,204 KB
testcase_46 AC 54 ms
50,368 KB
testcase_47 AC 54 ms
50,348 KB
testcase_48 AC 54 ms
49,984 KB
testcase_49 AC 53 ms
50,528 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();
        long y = sc.nextLong();
        long b = sc.nextLong();
        HashMap<Long, Integer> countsX = getCount(x);
        HashMap<Long, Integer> countsY = getCount(y);
        for (long z : countsY.keySet()) {
            if (!countsX.containsKey(z) || countsX.get(z) * a < countsY.get(z) * b) {
                System.out.println("No");
                return;
            }
        }
        System.out.println("Yes");
    }
    
    static HashMap<Long, Integer> getCount(long x) {
        HashMap<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 = 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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0