結果

問題 No.822 Bitwise AND
ユーザー ks2mks2m
提出日時 2019-04-26 23:21:22
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 480 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-06-25 18:16:25
合計ジャッジ時間 5,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
56,008 KB
testcase_02 AC 136 ms
53,936 KB
testcase_03 AC 138 ms
54,000 KB
testcase_04 AC 142 ms
53,828 KB
testcase_05 AC 139 ms
54,048 KB
testcase_06 AC 142 ms
54,052 KB
testcase_07 AC 142 ms
54,088 KB
testcase_08 AC 142 ms
53,704 KB
testcase_09 AC 143 ms
54,052 KB
testcase_10 AC 138 ms
54,304 KB
testcase_11 AC 140 ms
53,676 KB
testcase_12 AC 143 ms
54,252 KB
testcase_13 AC 140 ms
54,096 KB
testcase_14 AC 135 ms
54,284 KB
testcase_15 AC 138 ms
54,196 KB
testcase_16 AC 133 ms
54,052 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