結果
問題 | No.1243 約数加算 |
ユーザー | poohbear |
提出日時 | 2020-10-03 12:04:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 2,811 bytes |
コンパイル時間 | 2,109 ms |
コンパイル使用メモリ | 204,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 04:17:19 |
合計ジャッジ時間 | 2,620 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function 'void solve(ll, ll)': main.cpp:51:18: warning: 'high_order_bit' may be used uninitialized [-Wmaybe-uninitialized] 51 | for(int i=0;i<high_order_bit;i++){ | ~^~~~~~~~~~~~~~~ main.cpp:37:9: note: 'high_order_bit' was declared here 37 | int high_order_bit; | ^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (ll a = 0; a < (n); ++a) using namespace std; //using namespace atcoder; using ll = long long; typedef pair<ll,ll> P; typedef pair<ll,P> PP; typedef vector<vector<int> > Graph; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; #define debug(v) cout<<#v<<": ",prt(v); template <typename A,typename B> inline void prt(pair<A,B> p){cout<<"("<<p.first<<", "<<p.second<<")\n";} template <typename A,typename B,typename C> inline void prt(tuple<A,B,C> p){cout<<"("<<get<0>(p)<<", "<<get<1>(p)<<", "<<get<2>(p)<<")\n";} inline void prt(bool p){if(p)cout<<"True"<<'\n';else cout<<"False"<<'\n';} template <typename T> inline void prt(vector<T> v){cout<<'{';for(ll i=0;i<v.size();i++){cout<<v[i];if(i<v.size()-1)cout<<", ";}cout<<'}'<<'\n';} template<typename T> inline void prt(vector<vector<T> >& vv){ for(const auto& v : vv){ prt(v); } } template <typename T> inline void prt(deque<T> v){cout<<'{';for(ll i=0;i<v.size();i++){cout<<v[i];if(i<v.size()-1)cout<<", ";}cout<<'}'<<'\n';} template <typename A,typename B> inline void prt(map<A,B> v){cout<<'{';ll c=0;for(auto &p: v){cout<<p.first<<":"<<p.second;c++;if(c!=v.size())cout<<", ";}cout<<'}'<<'\n';} template <typename A,typename B> inline void prt(unordered_map<A,B> v){cout<<'{';ll c=0;for(auto &p: v){cout<<p.first<<":"<<p.second;c++;if(c!=v.size())cout<<", ";}cout<<'}'<<'\n';} template <typename T> inline void prt(set<T> v){cout<<'{';for(auto i=v.begin();i!=v.end();i++){cout<<*i;if(i!=--v.end())cout<<", ";}cout<<'}'<<'\n';} template <typename T> inline void prt(multiset<T> v){cout<<'{';for(auto i=v.begin();i!=v.end();i++){cout<<*i;if(i!=--v.end())cout<<", ";}cout<<'}'<<'\n';} void solve(ll a,ll b){ int high_order_bit; for(int i=63;i>=0;i--){ if((!((a>>i)&1))&&((b>>i)&1)){ high_order_bit = i; break; } } if(high_order_bit==0){ cout << 1 << endl; cout << 1 << endl; return; } vector<ll>ans; ll now = 1; for(int i=0;i<high_order_bit;i++){ if((a>>i)&1){ ans.push_back(now); a += now; } now *= 2; } now /= 2; for(int i=high_order_bit-1;i>=0;i--){ if((b>>i)&1){ ans.push_back(now); } now /= 2; } ll sz = ans.size(); cout << sz << endl; rep(i,sz-1){ cout << ans[i] << ' '; } cout << ans[sz-1] << endl; return; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); //input ll t; cin >> t; rep(test,t){ ll a,b; cin >> a >> b; solve(a,b); } return 0; }