結果

問題 No.2533 A⇒B問題
ユーザー kusagame12kusagame12
提出日時 2024-03-04 18:26:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-09-29 17:30:31
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,984 KB
testcase_01 AC 126 ms
53,948 KB
testcase_02 AC 131 ms
53,980 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 122 ms
54,088 KB
testcase_07 AC 108 ms
52,964 KB
testcase_08 AC 123 ms
54,164 KB
testcase_09 AC 124 ms
53,744 KB
testcase_10 AC 128 ms
54,060 KB
testcase_11 AC 108 ms
52,872 KB
testcase_12 AC 106 ms
52,892 KB
testcase_13 AC 120 ms
53,864 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 125 ms
53,912 KB
testcase_17 WA -
testcase_18 AC 125 ms
54,136 KB
testcase_19 AC 121 ms
53,852 KB
testcase_20 WA -
testcase_21 AC 123 ms
54,116 KB
testcase_22 AC 126 ms
53,988 KB
testcase_23 AC 119 ms
54,196 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();
       
        long bigger = Math.max(a,b);
        long smaller = Math.min(a,b);
       
        while(bigger > 0){
            
            bigger = bigger / 2;
            smaller = smaller / 2;
            
            if(bigger % 2 != smaller % 2){
                System.out.println("No");
                return;
            }
            
        }
       
        System.out.println("Yes");
        
    }
   
}
0