結果
問題 | No.822 Bitwise AND |
ユーザー | 37zigen |
提出日時 | 2019-04-26 22:03:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 655 bytes |
コンパイル時間 | 2,821 ms |
コンパイル使用メモリ | 75,592 KB |
実行使用メモリ | 54,584 KB |
最終ジャッジ日時 | 2024-06-25 18:12:53 |
合計ジャッジ時間 | 6,142 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
53,912 KB |
testcase_01 | AC | 138 ms
54,208 KB |
testcase_02 | AC | 137 ms
54,192 KB |
testcase_03 | AC | 138 ms
54,292 KB |
testcase_04 | AC | 153 ms
54,180 KB |
testcase_05 | AC | 149 ms
54,560 KB |
testcase_06 | AC | 154 ms
54,260 KB |
testcase_07 | AC | 149 ms
54,152 KB |
testcase_08 | AC | 141 ms
54,060 KB |
testcase_09 | AC | 139 ms
54,284 KB |
testcase_10 | AC | 143 ms
53,912 KB |
testcase_11 | AC | 145 ms
54,584 KB |
testcase_12 | AC | 143 ms
53,916 KB |
testcase_13 | AC | 137 ms
54,312 KB |
testcase_14 | AC | 135 ms
54,072 KB |
testcase_15 | AC | 148 ms
54,264 KB |
testcase_16 | AC | 136 ms
53,900 KB |
ソースコード
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 ((x & y) == N) { ++ans; } } System.out.println(ans); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }