結果

問題 No.1957 Xor Min
ユーザー tentententen
提出日時 2024-07-30 09:20:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,505 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 78,712 KB
実行使用メモリ 50,444 KB
最終ジャッジ日時 2024-07-30 09:20:27
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,376 KB
testcase_01 AC 49 ms
49,880 KB
testcase_02 AC 49 ms
50,244 KB
testcase_03 AC 52 ms
50,252 KB
testcase_04 AC 51 ms
50,024 KB
testcase_05 AC 48 ms
50,380 KB
testcase_06 AC 49 ms
50,344 KB
testcase_07 AC 48 ms
50,440 KB
testcase_08 AC 49 ms
50,400 KB
testcase_09 AC 51 ms
50,276 KB
testcase_10 AC 51 ms
50,404 KB
testcase_11 AC 49 ms
50,216 KB
testcase_12 AC 50 ms
50,352 KB
testcase_13 AC 50 ms
50,012 KB
testcase_14 AC 50 ms
50,432 KB
testcase_15 AC 54 ms
50,332 KB
testcase_16 AC 50 ms
49,916 KB
testcase_17 AC 50 ms
49,892 KB
testcase_18 AC 50 ms
50,384 KB
testcase_19 AC 51 ms
50,176 KB
testcase_20 AC 51 ms
50,280 KB
testcase_21 AC 50 ms
50,404 KB
testcase_22 AC 50 ms
49,988 KB
testcase_23 AC 50 ms
50,364 KB
testcase_24 AC 50 ms
50,444 KB
testcase_25 AC 51 ms
50,144 KB
testcase_26 AC 51 ms
50,224 KB
testcase_27 AC 51 ms
50,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        System.out.println(check(sc.nextInt(), sc.nextInt()));
    }
    
    static int check(int a, int b) {
        if (a > b) {
            return check(b, a);
        }
        int xor = a ^ b;
        if (xor >= a) {
            return a;
        } else {
            int count = 0;
            while (a > 1) {
                a >>= 1;
                count++;
            }
            return (1 << count) - 1;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0