結果
問題 | No.1298 OR XOR |
ユーザー | Muna-akki |
提出日時 | 2020-11-27 21:37:15 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 702 bytes |
コンパイル時間 | 2,245 ms |
コンパイル使用メモリ | 76,600 KB |
実行使用メモリ | 42,620 KB |
最終ジャッジ日時 | 2024-07-26 11:53:44 |
合計ジャッジ時間 | 5,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 13 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = Integer.parseInt(sc.next()); if(N==1) { System.out.println("-1 -1 -1"); return; } int A = 1; int B = 1; int C = N; int count = 0; int S = N; while(true) { S /= 2; count++; if(S==0) { break; } } //A+B=Cとする //Nのビットで初めて0でないものが出てくるのはどこか for(int i=0 ; i<count ; i++) { if(N>>i==1) { A = 1<<i; B = N-A; if(B==0 || A==0) { continue; } System.out.println(A + " " + B + " " + C); return; } } System.out.println("-1 -1 -1"); } }