結果

問題 No.822 Bitwise AND
ユーザー ks2mks2m
提出日時 2021-03-04 23:08:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-10-05 12:51:50
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
41,316 KB
testcase_01 AC 118 ms
40,248 KB
testcase_02 AC 128 ms
41,600 KB
testcase_03 AC 129 ms
41,248 KB
testcase_04 AC 204 ms
41,252 KB
testcase_05 AC 160 ms
41,156 KB
testcase_06 AC 183 ms
41,416 KB
testcase_07 AC 205 ms
41,352 KB
testcase_08 AC 138 ms
41,168 KB
testcase_09 AC 133 ms
41,252 KB
testcase_10 AC 132 ms
41,188 KB
testcase_11 AC 117 ms
40,012 KB
testcase_12 AC 136 ms
41,548 KB
testcase_13 AC 130 ms
41,336 KB
testcase_14 AC 129 ms
41,824 KB
testcase_15 AC 162 ms
40,472 KB
testcase_16 AC 128 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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;
		}

		int ans = 0;
		for (int i = 0; i <= n * 2 + k; i++) {
			for (int j = i; j <= i + k; j++) {
				if ((i & j) == n) {
					ans++;
				}
			}
		}
		System.out.println(ans);
	}
}
0