結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
40,960 KB
testcase_02 AC 134 ms
41,236 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 140 ms
41,444 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 138 ms
41,420 KB
testcase_09 AC 142 ms
41,364 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 135 ms
41,100 KB
testcase_13 AC 138 ms
41,480 KB
testcase_14 WA -
testcase_15 AC 135 ms
41,376 KB
testcase_16 AC 141 ms
40,944 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