結果

問題 No.1298 OR XOR
ユーザー キョウチクキョウチク
提出日時 2022-05-17 18:20:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 3,814 ms
コンパイル使用メモリ 85,620 KB
実行使用メモリ 42,596 KB
最終ジャッジ日時 2024-09-15 13:13:16
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,864 KB
testcase_01 AC 171 ms
42,288 KB
testcase_02 AC 163 ms
42,368 KB
testcase_03 AC 165 ms
42,236 KB
testcase_04 AC 166 ms
42,384 KB
testcase_05 AC 165 ms
42,240 KB
testcase_06 AC 166 ms
42,596 KB
testcase_07 AC 167 ms
42,288 KB
testcase_08 AC 167 ms
42,456 KB
testcase_09 AC 168 ms
42,264 KB
testcase_10 AC 165 ms
42,144 KB
testcase_11 AC 163 ms
42,368 KB
testcase_12 AC 166 ms
42,276 KB
testcase_13 AC 163 ms
42,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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