結果

問題 No.2533 A⇒B問題
ユーザー kusagame12kusagame12
提出日時 2024-03-04 18:33:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-29 17:30:38
合計ジャッジ時間 5,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,724 KB
testcase_01 AC 123 ms
53,820 KB
testcase_02 AC 124 ms
54,064 KB
testcase_03 AC 122 ms
54,096 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 124 ms
53,944 KB
testcase_07 AC 125 ms
53,536 KB
testcase_08 AC 126 ms
53,796 KB
testcase_09 AC 126 ms
53,932 KB
testcase_10 AC 125 ms
54,304 KB
testcase_11 AC 120 ms
54,032 KB
testcase_12 AC 123 ms
54,000 KB
testcase_13 AC 120 ms
54,156 KB
testcase_14 AC 119 ms
54,292 KB
testcase_15 AC 121 ms
53,988 KB
testcase_16 WA -
testcase_17 AC 112 ms
52,740 KB
testcase_18 AC 118 ms
53,840 KB
testcase_19 AC 121 ms
53,964 KB
testcase_20 WA -
testcase_21 AC 122 ms
53,836 KB
testcase_22 AC 120 ms
54,044 KB
testcase_23 AC 124 ms
54,064 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){
            
            a = a / 2;
            b = b / 2;
            
            if(a % 2 == 1 && b % 2 != 1){
                System.out.println("No");
                return;
            }
            
        }
       
        System.out.println("Yes");
        
    }
   
}
0