結果
| 問題 |
No.638 Sum of "not power of 2"
|
| コンテスト | |
| ユーザー |
dustnn0
|
| 提出日時 | 2018-03-10 15:51:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 576 bytes |
| コンパイル時間 | 1,896 ms |
| コンパイル使用メモリ | 171,312 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 12:48:17 |
| 合計ジャッジ時間 | 2,674 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,a) for(int i=0;i<(a);i++)
#define MOD 1000000007
const ll MA=1000000000000000000;
int main(){
ll n; cin>>n;
set<ll> st;
ll x=1;
while(x<=MA/2){
x*=2;
st.insert(x);
}
ll ans=-1;
decltype(st)::iterator it;
for(ll i=3;i<=n/2;i++){
it=st.find(i);
if(it!=st.end()) continue;
it=st.find(n-i);
if(it!=st.end()) continue;
ans=i;
break;
}
if(ans==-1) cout<<-1<<endl;
else cout<<ans<<" "<<n-ans<<endl;
return 0;
}
dustnn0