結果

問題 No.822 Bitwise AND
ユーザー htensaihtensai
提出日時 2020-02-14 17:53:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 51,164 KB
最終ジャッジ日時 2024-06-25 18:18:57
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
50,952 KB
testcase_01 AC 53 ms
50,272 KB
testcase_02 AC 56 ms
50,368 KB
testcase_03 AC 53 ms
49,896 KB
testcase_04 AC 80 ms
50,760 KB
testcase_05 AC 76 ms
51,032 KB
testcase_06 AC 87 ms
51,164 KB
testcase_07 AC 83 ms
50,856 KB
testcase_08 AC 55 ms
50,412 KB
testcase_09 AC 53 ms
50,408 KB
testcase_10 AC 52 ms
50,364 KB
testcase_11 AC 52 ms
50,096 KB
testcase_12 AC 51 ms
50,216 KB
testcase_13 AC 52 ms
50,380 KB
testcase_14 AC 52 ms
50,432 KB
testcase_15 AC 77 ms
51,060 KB
testcase_16 AC 52 ms
50,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws Exception {
	    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	    String[] first = br.readLine().split(" ", 2);
		int n = Integer.parseInt(first[0]);
		int k = Integer.parseInt(first[1]);
		if (n < k) {
		    System.out.println("INF");
		    return;
		}
		int max = 1;
		while (n >= max) {
		    max = max << 1;
		}
		int count = 0;
		for (int i = n; i <= max; i++) {
		    for (int j = i; j - i <= k; j++) {
		        if ((i & j) == n) {
		            count++;
		        }
		    }
		}
		System.out.println(count);
    }
}
0