結果

問題 No.822 Bitwise AND
ユーザー ks2mks2m
提出日時 2019-04-26 22:16:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-05-03 23:05:52
合計ジャッジ時間 5,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
54,256 KB
testcase_02 AC 131 ms
54,276 KB
testcase_03 AC 132 ms
54,388 KB
testcase_04 WA -
testcase_05 AC 136 ms
54,056 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 133 ms
54,252 KB
testcase_09 AC 132 ms
53,868 KB
testcase_10 AC 131 ms
54,180 KB
testcase_11 AC 135 ms
54,104 KB
testcase_12 AC 135 ms
53,960 KB
testcase_13 AC 118 ms
52,648 KB
testcase_14 AC 133 ms
54,188 KB
testcase_15 AC 133 ms
54,204 KB
testcase_16 AC 132 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		if (n < k) {
			System.out.println("INF");
			return;
		}

		Set<Integer> set = new HashSet<Integer>();
		for (int i = n; i <= n + k; i++) {
			if ((n & i) == n) {
				set.add(i);
			}
		}

		int ans = 0;
		Integer[] array = set.toArray(new Integer[0]);
		for (int i = 0; i < array.length; i++) {
			for (int j = i; j < array.length; j++) {
				if ((array[i] & array[j]) == n) {
					ans++;
				}
			}
		}
		System.out.println(ans);
	}
}
0