結果

問題 No.1298 OR XOR
ユーザー キョウチクキョウチク
提出日時 2022-05-15 10:05:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 3,994 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-07-23 22:07:41
合計ジャッジ時間 7,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    int c=Integer.parseInt(line);
    int n=1;
    for(int i=1;i<=c/2;i*=2){
      n++;
    }
    int a=(int)Math.pow(2,n-1);
    int b=c%a;
    //System.out.println((b|c)+","+(a^b^c));
    if(b==0){
      System.out.println("-1 -1 -1");
    }else{
      System.out.println(a+" "+b+" "+c);
    }
    sc.close();
  }
}
0