結果
問題 | No.1871 divisXor |
ユーザー |
![]() |
提出日時 | 2022-03-11 22:20:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 581 bytes |
コンパイル時間 | 3,655 ms |
コンパイル使用メモリ | 229,752 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 12:58:32 |
合計ジャッジ時間 | 6,090 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 29 |
ソースコード
#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<ll> 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'; } }