結果

問題 No.1871 divisXor
ユーザー monnu
提出日時 2022-03-11 22:18:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 228,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-16 02:37:42
合計ジャッジ時間 8,053 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,ll>>>;
#define INF 1000000000000000000
#define MOD 998244353
#define MAX 1000000

int main(){
  ll N;
  cin>>N;
  if(0==N){
    cout<<-1<<'\n';
  }else{
    vector<int> ans;
    int x=0;
    for(int i=40;i>=0;i--){
      int a=((N>>i)&1);
      if(a^x==1){
        ans.push_back(1LL<<i);
        x=1-x;
      }
    }
    cout<<ans.size()<<'\n';
    for(int i=0;i<ans.size();i++){
      cout<<ans[i]<<' ';
    }
    cout<<'\n';
  }
}
0