結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー ripityripity
提出日時 2021-12-12 21:51:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 3,032 ms
コンパイル使用メモリ 83,984 KB
実行使用メモリ 41,228 KB
最終ジャッジ日時 2024-07-21 10:04:34
合計ジャッジ時間 9,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 95 ms
39,564 KB
testcase_02 AC 109 ms
40,956 KB
testcase_03 AC 140 ms
40,916 KB
testcase_04 AC 139 ms
41,092 KB
testcase_05 AC 141 ms
41,056 KB
testcase_06 AC 139 ms
40,208 KB
testcase_07 AC 127 ms
40,704 KB
testcase_08 AC 118 ms
41,172 KB
testcase_09 AC 108 ms
41,196 KB
testcase_10 AC 118 ms
41,124 KB
testcase_11 AC 110 ms
41,228 KB
testcase_12 AC 100 ms
40,312 KB
testcase_13 AC 108 ms
40,856 KB
testcase_14 AC 113 ms
41,072 KB
testcase_15 AC 123 ms
40,192 KB
testcase_16 AC 115 ms
41,000 KB
testcase_17 WA -
testcase_18 AC 116 ms
40,116 KB
testcase_19 AC 108 ms
40,024 KB
testcase_20 AC 113 ms
40,832 KB
testcase_21 AC 123 ms
41,000 KB
testcase_22 AC 116 ms
41,156 KB
testcase_23 AC 117 ms
41,048 KB
testcase_24 AC 98 ms
40,112 KB
testcase_25 AC 120 ms
40,772 KB
testcase_26 AC 114 ms
41,128 KB
testcase_27 AC 106 ms
40,640 KB
testcase_28 AC 133 ms
40,920 KB
testcase_29 AC 121 ms
40,752 KB
testcase_30 AC 130 ms
41,016 KB
testcase_31 AC 121 ms
41,044 KB
testcase_32 AC 111 ms
40,988 KB
testcase_33 AC 98 ms
39,780 KB
testcase_34 AC 97 ms
40,464 KB
testcase_35 AC 105 ms
40,184 KB
testcase_36 AC 142 ms
40,904 KB
testcase_37 WA -
testcase_38 AC 109 ms
40,728 KB
testcase_39 AC 99 ms
39,896 KB
testcase_40 AC 107 ms
40,872 KB
testcase_41 AC 106 ms
40,904 KB
testcase_42 AC 107 ms
40,856 KB
testcase_43 WA -
testcase_44 AC 107 ms
41,136 KB
testcase_45 WA -
testcase_46 AC 109 ms
40,752 KB
testcase_47 AC 101 ms
40,180 KB
testcase_48 WA -
testcase_49 AC 106 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        long X = sc.nextLong();
        long A = sc.nextLong();
        long Y = sc.nextLong();
        long B = sc.nextLong();
        boolean ok = true;
        for( long i = 2; i*i <= X; i++ ) {
            if( X%i != 0 && Y%i == 0 ) ok = false;
            if( X%i == 0 && Y%i == 0 ) {
                int xcnt = 0;
                while( X%i == 0 ) {
                    xcnt++;
                    X /= i;
                }
                int ycnt = 0;
                while( Y%i == 0 ) {
                    ycnt++;
                    Y /= i;
                }
                if( xcnt*A < ycnt*B ) ok = false;
            }
        }
        
        if( X > 1 && X != Y ) ok = false;
        System.out.println( ok ? "Yes" : "No" );
        
    }
    
}
0