結果

問題 No.1298 OR XOR
ユーザー tentententen
提出日時 2020-11-30 18:21:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 55,240 KB
最終ジャッジ日時 2024-09-13 02:28:15
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
55,240 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 162 ms
54,696 KB
testcase_07 AC 168 ms
55,016 KB
testcase_08 AC 164 ms
54,760 KB
testcase_09 AC 168 ms
54,988 KB
testcase_10 AC 169 ms
54,804 KB
testcase_11 AC 166 ms
54,916 KB
testcase_12 AC 168 ms
54,736 KB
testcase_13 AC 165 ms
55,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int count = getCount(n);
        if (count <= 1) {
            System.out.println("-1, -1, -1");
            return;
        }
        int a = 1;
        while ((n & a) == 0) {
            a <<= 1;
        }
        System.out.println(a + " " + (n ^ a) + " " + n);
    }
    
    static int getCount(int x) {
        int count = 0;
        while (x > 0) {
            count += x % 2;
            x /= 2;
        }
        return count;
    }
}
0