結果

問題 No.822 Bitwise AND
ユーザー 37zigen37zigen
提出日時 2019-04-26 22:01:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-11-25 03:47:17
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
53,628 KB
testcase_02 AC 102 ms
52,608 KB
testcase_03 AC 107 ms
52,460 KB
testcase_04 AC 129 ms
52,832 KB
testcase_05 AC 121 ms
53,412 KB
testcase_06 AC 141 ms
53,780 KB
testcase_07 AC 127 ms
52,836 KB
testcase_08 AC 111 ms
53,148 KB
testcase_09 AC 117 ms
54,040 KB
testcase_10 AC 109 ms
52,476 KB
testcase_11 AC 116 ms
53,688 KB
testcase_12 AC 115 ms
53,924 KB
testcase_13 AC 102 ms
52,540 KB
testcase_14 AC 119 ms
53,652 KB
testcase_15 AC 115 ms
53,084 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}

	void run() throws Exception {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long K = sc.nextLong();
		if (N + 1 <= K) {
			System.out.println("INF");
			return;
		}
		int max = 1;
		while (max < N)
			max *= 2;
		max -= 1;
		long ans = 0;
		for (long y = N; y <= max; ++y) {
			for (long x = Math.max(0, y - K); x <= y; ++x)
				if (y - x <= K && (x & y) == N) {
					++ans;
				}
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0