結果

問題 No.1298 OR XOR
ユーザー tentententen
提出日時 2022-09-26 18:09:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 53,456 KB
最終ジャッジ日時 2024-06-02 00:14:27
合計ジャッジ時間 4,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
51,036 KB
testcase_01 AC 50 ms
50,548 KB
testcase_02 AC 49 ms
50,536 KB
testcase_03 AC 51 ms
50,080 KB
testcase_04 AC 52 ms
50,420 KB
testcase_05 AC 52 ms
50,416 KB
testcase_06 AC 85 ms
51,388 KB
testcase_07 AC 85 ms
51,488 KB
testcase_08 AC 97 ms
53,352 KB
testcase_09 AC 83 ms
53,068 KB
testcase_10 AC 88 ms
51,436 KB
testcase_11 AC 93 ms
52,600 KB
testcase_12 AC 80 ms
52,892 KB
testcase_13 AC 83 ms
53,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int x = sc.nextInt();
        int idx = 0;
        while (true) {
            if ((x & (1 << idx)) == 0) {
                idx++;
                continue;
            }
            if ((x ^ (1 << idx)) == 0) {
                System.out.println("-1 -1 -1");
            } else {
                int a = (1 << idx);
                int b = x ^ a;
                System.out.println(a + " " + b + " " + x);
            }
            return;
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0