結果
問題 | No.1298 OR XOR |
ユーザー | platinum |
提出日時 | 2020-11-27 22:51:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 406 bytes |
コンパイル時間 | 1,652 ms |
コンパイル使用メモリ | 166,736 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-26 19:10:48 |
合計ジャッジ時間 | 2,662 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0; i<(int)(n); i++) using namespace std; using LL = long long; using P = pair<int,int>; int main(){ int N; cin >> N; int a = 0, b = 0, c = N; rep(bit,35){ if(N & (1 << bit)){ a = pow(2, bit); b = N - a; break; } } if(b == 0) cout << -1 << " " << -1 << " " << -1 << endl; else cout << a << " " << b << " " << c << endl; return 0; }