結果

問題 No.1298 OR XOR
ユーザー ks2mks2m
提出日時 2020-11-27 21:33:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 2,781 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 42,668 KB
最終ジャッジ日時 2024-07-26 11:47:12
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		int a = 0;
		int b = 0;
		int c = 0;
		int cnt = 0;
		for (int i = 0; i < 31; i++) {
			if ((n >> i & 1) == 1) {
				cnt++;
				if (cnt == 1) {
					a += 1 << i;
					b += 1 << i;
				} else {
					a += 1 << i;
					c += 1 << i;
				}
			}
		}
		if (cnt <= 1) {
			System.out.println("-1 -1 -1");
		} else {
			System.out.println(a + " " + b + " " + c);
		}
	}
}
0