結果

問題 No.638 Sum of "not power of 2"
ユーザー dustnn0dustnn0
提出日時 2018-03-10 15:51:19
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0