結果

問題 No.939 and or
ユーザー k_6101k_6101
提出日時 2019-12-05 02:14:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,675 bytes
コンパイル時間 5,604 ms
コンパイル使用メモリ 87,480 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-12-15 04:52:16
合計ジャッジ時間 7,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,880 KB
testcase_01 AC 117 ms
54,104 KB
testcase_02 WA -
testcase_03 AC 119 ms
53,948 KB
testcase_04 AC 121 ms
54,176 KB
testcase_05 AC 121 ms
54,156 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 121 ms
53,952 KB
testcase_09 AC 124 ms
54,164 KB
testcase_10 AC 123 ms
53,852 KB
testcase_11 WA -
testcase_12 AC 121 ms
56,092 KB
testcase_13 AC 108 ms
53,052 KB
testcase_14 AC 116 ms
53,092 KB
testcase_15 AC 121 ms
54,016 KB
testcase_16 AC 117 ms
54,084 KB
testcase_17 WA -
testcase_18 AC 120 ms
54,108 KB
testcase_19 AC 121 ms
54,124 KB
testcase_20 AC 120 ms
54,128 KB
testcase_21 WA -
testcase_22 AC 104 ms
53,096 KB
testcase_23 AC 117 ms
53,936 KB
testcase_24 WA -
testcase_25 AC 117 ms
53,828 KB
testcase_26 WA -
testcase_27 AC 122 ms
54,272 KB
testcase_28 AC 119 ms
54,280 KB
testcase_29 AC 120 ms
53,952 KB
testcase_30 WA -
testcase_31 AC 118 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    public void solve() {
    	int A = Integer.parseInt(sc.next());
    	int B = Integer.parseInt(sc.next());
    	if(A > B) {
    		out.println(0);
    		return;
    	}
    	char[] ca = Integer.toBinaryString(A).toCharArray();
    	char[] cb = Integer.toBinaryString(B).toCharArray();
    	int offset = cb.length - ca.length;
    	if(ca[0] != cb[offset]) {
    		out.println(0);
    		return;
    	}
    	int cnt = 1, flg = 0;
    	if(offset > 0)	flg = 1;
    	for (int i = 1; i < ca.length; i++) {
    		if(ca[i] == 1 && cb[i+offset] == 0) {
        		out.println(0);
        		return;
    		}
			if(flg == 0 && ca[i] != cb[i+offset]) {
				flg = 1;
			} else if(ca[i] != cb[i+offset]) {
				cnt *= 2;
			}
		}
    	out.println(cnt);
    }
    // ==================================================================
}
0