結果

問題 No.1298 OR XOR
ユーザー キョウチクキョウチク
提出日時 2022-05-15 10:05:13
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
42,412 KB
testcase_01 AC 126 ms
41,176 KB
testcase_02 AC 122 ms
41,408 KB
testcase_03 AC 124 ms
40,988 KB
testcase_04 AC 126 ms
41,312 KB
testcase_05 AC 124 ms
41,488 KB
testcase_06 AC 167 ms
42,560 KB
testcase_07 AC 164 ms
42,668 KB
testcase_08 AC 161 ms
42,512 KB
testcase_09 AC 165 ms
42,632 KB
testcase_10 AC 168 ms
42,648 KB
testcase_11 AC 161 ms
42,580 KB
testcase_12 AC 163 ms
42,576 KB
testcase_13 AC 162 ms
42,676 KB
権限があれば一括ダウンロードができます

ソースコード

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