結果

問題 No.2533 A⇒B問題
ユーザー kusagame12kusagame12
提出日時 2024-03-04 18:35:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-09-29 17:30:45
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,144 KB
testcase_01 AC 118 ms
54,152 KB
testcase_02 AC 124 ms
53,620 KB
testcase_03 AC 120 ms
54,048 KB
testcase_04 AC 122 ms
53,952 KB
testcase_05 AC 126 ms
53,668 KB
testcase_06 AC 129 ms
54,008 KB
testcase_07 AC 122 ms
54,100 KB
testcase_08 AC 118 ms
53,828 KB
testcase_09 AC 125 ms
53,764 KB
testcase_10 AC 114 ms
53,436 KB
testcase_11 AC 126 ms
53,852 KB
testcase_12 AC 123 ms
54,160 KB
testcase_13 AC 129 ms
53,836 KB
testcase_14 AC 125 ms
54,076 KB
testcase_15 AC 122 ms
54,184 KB
testcase_16 AC 120 ms
53,724 KB
testcase_17 AC 108 ms
52,800 KB
testcase_18 AC 123 ms
53,940 KB
testcase_19 AC 127 ms
54,128 KB
testcase_20 AC 123 ms
53,980 KB
testcase_21 AC 109 ms
53,096 KB
testcase_22 AC 123 ms
53,944 KB
testcase_23 AC 117 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
       
        Scanner sc = new Scanner(System.in);
        
        long a = sc.nextLong();
        long b = sc.nextLong();
       
        while(a > 0 || b > 0){
            
            if(a % 2 == 1 && b % 2 != 1){
                System.out.println("No");
                return;
            }
         
            a = a / 2;
            b = b / 2;
            
        }
       
        System.out.println("Yes");
        
    }
   
}
0