結果

問題 No.939 and or
ユーザー k_6101k_6101
提出日時 2019-12-05 02:08:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,710 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 79,796 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-12-15 04:11:21
合計ジャッジ時間 6,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,732 KB
testcase_01 AC 108 ms
52,956 KB
testcase_02 WA -
testcase_03 AC 121 ms
54,536 KB
testcase_04 AC 119 ms
53,844 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 116 ms
54,000 KB
testcase_09 AC 117 ms
54,004 KB
testcase_10 AC 106 ms
53,092 KB
testcase_11 WA -
testcase_12 AC 119 ms
54,216 KB
testcase_13 WA -
testcase_14 AC 125 ms
53,876 KB
testcase_15 AC 118 ms
53,968 KB
testcase_16 AC 124 ms
54,220 KB
testcase_17 WA -
testcase_18 AC 130 ms
54,116 KB
testcase_19 AC 126 ms
53,964 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 120 ms
53,852 KB
testcase_23 AC 119 ms
54,012 KB
testcase_24 WA -
testcase_25 AC 119 ms
54,164 KB
testcase_26 WA -
testcase_27 AC 120 ms
53,944 KB
testcase_28 AC 119 ms
54,052 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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]) {
				if(cnt == -1)	cnt = 2;
				else			cnt *= 2;
			}
		}
    	out.println(cnt);
    }
    // ==================================================================
}
0