結果
問題 | No.822 Bitwise AND |
ユーザー | mikit |
提出日時 | 2019-04-26 23:08:59 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,113 bytes |
コンパイル時間 | 2,044 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 50,436 KB |
最終ジャッジ日時 | 2024-11-25 06:38:54 |
合計ジャッジ時間 | 3,698 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 50 ms
50,192 KB |
testcase_02 | AC | 51 ms
50,304 KB |
testcase_03 | AC | 52 ms
50,436 KB |
testcase_04 | WA | - |
testcase_05 | AC | 50 ms
50,152 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 51 ms
50,236 KB |
testcase_09 | AC | 50 ms
50,244 KB |
testcase_10 | WA | - |
testcase_11 | AC | 50 ms
50,340 KB |
testcase_12 | AC | 51 ms
50,364 KB |
testcase_13 | AC | 50 ms
49,912 KB |
testcase_14 | AC | 48 ms
50,212 KB |
testcase_15 | AC | 50 ms
50,240 KB |
testcase_16 | AC | 50 ms
49,876 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.UncheckedIOException; import java.nio.charset.Charset; import java.util.StringTokenizer; import java.io.Writer; import java.io.OutputStreamWriter; import java.io.BufferedReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author mikit */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; LightScanner in = new LightScanner(inputStream); LightWriter out = new LightWriter(outputStream); BitwiseAnd solver = new BitwiseAnd(); solver.solve(1, in, out); out.close(); } static class BitwiseAnd { public void solve(int testNumber, LightScanner in, LightWriter out) { // out.setBoolLabel(LightWriter.BoolLabel.YES_NO_FIRST_UP); int n = in.ints(), k = in.ints(); for (int i = n + 1; i <= k; i++) { if ((i & n) == 0) { out.ans("INF").ln(); return; } } long ans = 0; for (int i = 0; i <= k; i++) { for (int j = 0; j <= i; j++) { if ((n & i) == 0 && (n & j) == 0 && (i & j) == 0) { ans++; } } } out.ans(ans).ln(); } } static class LightWriter implements AutoCloseable { private final Writer out; private boolean autoflush = false; private boolean breaked = true; public LightWriter(Writer out) { this.out = out; } public LightWriter(OutputStream out) { this(new BufferedWriter(new OutputStreamWriter(out, Charset.defaultCharset()))); } public LightWriter print(char c) { try { out.write(c); breaked = false; } catch (IOException ex) { throw new UncheckedIOException(ex); } return this; } public LightWriter print(String s) { try { out.write(s, 0, s.length()); breaked = false; } catch (IOException ex) { throw new UncheckedIOException(ex); } return this; } public LightWriter ans(String s) { if (!breaked) { print(' '); } return print(s); } public LightWriter ans(long l) { return ans(Long.toString(l)); } public LightWriter ln() { print(System.lineSeparator()); breaked = true; if (autoflush) { try { out.flush(); } catch (IOException ex) { throw new UncheckedIOException(ex); } } return this; } public void close() { try { out.close(); } catch (IOException ex) { throw new UncheckedIOException(ex); } } } static class LightScanner { private BufferedReader reader = null; private StringTokenizer tokenizer = null; public LightScanner(InputStream in) { reader = new BufferedReader(new InputStreamReader(in)); } public String string() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new UncheckedIOException(e); } } return tokenizer.nextToken(); } public int ints() { return Integer.parseInt(string()); } } }