結果

問題 No.1298 OR XOR
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-08 10:34:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 6,222 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 55,116 KB
最終ジャッジ日時 2024-10-09 19:42:25
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	if (n < 3) {
	    		System.out.println("-1 -1 -1");
	    	}

	    	int a = n;
	    	int b = -n & n;
	    	int c = n ^ b;

	    	if (a >0 && b > 0 && c >0) {
	    		System.out.println(a + " " + b + " " + c);
	    	}else {
	    	System.out.println("-1 -1 -1");}

	    	}

	    }


0