結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 141 ms
54,124 KB
testcase_02 AC 135 ms
54,104 KB
testcase_03 AC 138 ms
53,996 KB
testcase_04 WA -
testcase_05 AC 142 ms
54,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 138 ms
53,912 KB
testcase_09 AC 136 ms
53,872 KB
testcase_10 AC 136 ms
54,044 KB
testcase_11 AC 142 ms
54,292 KB
testcase_12 AC 138 ms
54,164 KB
testcase_13 AC 137 ms
54,040 KB
testcase_14 AC 142 ms
54,296 KB
testcase_15 AC 137 ms
53,924 KB
testcase_16 AC 139 ms
54,128 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 = n; i <= n + k; i++) {
			for (int j = i; j <= n + k; j++) {
				if ((i & j) == n) {
					ans++;
				}
			}
		}
		System.out.println(ans);
	}
}
0