結果

問題 No.1298 OR XOR
ユーザー tentententen
提出日時 2020-11-30 18:22:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 83,100 KB
実行使用メモリ 55,000 KB
最終ジャッジ日時 2024-09-13 02:28:21
合計ジャッジ時間 5,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
54,980 KB
testcase_01 AC 130 ms
54,128 KB
testcase_02 AC 131 ms
54,280 KB
testcase_03 AC 131 ms
54,028 KB
testcase_04 AC 131 ms
54,072 KB
testcase_05 AC 131 ms
53,888 KB
testcase_06 AC 166 ms
54,888 KB
testcase_07 AC 165 ms
54,776 KB
testcase_08 AC 159 ms
54,896 KB
testcase_09 AC 165 ms
55,000 KB
testcase_10 AC 167 ms
54,880 KB
testcase_11 AC 168 ms
54,900 KB
testcase_12 AC 163 ms
54,852 KB
testcase_13 AC 169 ms
54,880 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