結果

問題 No.822 Bitwise AND
ユーザー ks2mks2m
提出日時 2019-04-26 23:08:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 76,832 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-05-04 00:52:56
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
41,376 KB
testcase_02 AC 136 ms
41,016 KB
testcase_03 WA -
testcase_04 AC 139 ms
40,980 KB
testcase_05 AC 135 ms
41,292 KB
testcase_06 AC 137 ms
41,412 KB
testcase_07 AC 138 ms
41,076 KB
testcase_08 AC 138 ms
41,712 KB
testcase_09 AC 139 ms
41,216 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 123 ms
40,208 KB
testcase_13 AC 134 ms
41,124 KB
testcase_14 WA -
testcase_15 AC 137 ms
40,892 KB
testcase_16 AC 134 ms
41,236 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;
		int start = Math.max(n - k, 0);
		for (int i = start; i <= n + k; i++) {
			for (int j = i; j <= i + k; j++) {
				if ((i & j) == n) {
					ans++;
				}
			}
		}
		System.out.println(ans);
	}
}
0