結果

問題 No.1957 Xor Min
ユーザー tentententen
提出日時 2022-08-10 08:36:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,371 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 37,240 KB
最終ジャッジ日時 2024-09-20 13:01:42
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,072 KB
testcase_01 AC 46 ms
36,956 KB
testcase_02 AC 45 ms
37,100 KB
testcase_03 AC 48 ms
36,792 KB
testcase_04 AC 47 ms
36,968 KB
testcase_05 AC 47 ms
36,936 KB
testcase_06 AC 47 ms
36,988 KB
testcase_07 AC 48 ms
36,656 KB
testcase_08 AC 50 ms
37,052 KB
testcase_09 AC 48 ms
37,224 KB
testcase_10 AC 46 ms
36,704 KB
testcase_11 AC 45 ms
37,200 KB
testcase_12 AC 46 ms
36,848 KB
testcase_13 AC 47 ms
36,416 KB
testcase_14 AC 50 ms
36,572 KB
testcase_15 AC 49 ms
37,132 KB
testcase_16 AC 51 ms
36,932 KB
testcase_17 AC 52 ms
36,752 KB
testcase_18 AC 52 ms
37,048 KB
testcase_19 AC 49 ms
36,988 KB
testcase_20 AC 47 ms
37,064 KB
testcase_21 AC 45 ms
36,864 KB
testcase_22 AC 47 ms
36,556 KB
testcase_23 AC 48 ms
37,052 KB
testcase_24 AC 46 ms
36,860 KB
testcase_25 AC 47 ms
37,240 KB
testcase_26 AC 45 ms
37,048 KB
testcase_27 AC 46 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        System.out.println(getMin(sc.nextInt(), sc.nextInt()));
    }
    
    static int getMin(int a, int b) {
        if (a > b) {
            return getMin(b, a);
        }
        int aIdx = getIdx(a);
        int bIdx = getIdx(b);
        if (aIdx == bIdx) {
            return (1 << aIdx) - 1;
        } else {
            return a;
        }
    }
    
    static int getIdx(int x) {
        int count = 0;
        while (x > 0) {
            count++;
            x >>= 1;
        }
        return count - 1;
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0