結果
問題 | No.1243 約数加算 |
ユーザー | chocorusk |
提出日時 | 2020-10-02 22:09:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,134 bytes |
コンパイル時間 | 1,222 ms |
コンパイル使用メモリ | 130,304 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-17 21:18:26 |
合計ジャッジ時間 | 2,208 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; using ll=long long; typedef pair<int, int> P; void solve(ll a, ll b){ int t=-1; for(int i=59; i>=0; i--){ if((a&(1ll<<i))!=(b&(1ll<<i))){ t=i; break; } } vector<ll> ans; for(int i=0; i<t; i++){ if(a&(1ll<<i)){ a+=(1ll<<i); ans.push_back(1ll<<i); } } for(int i=t-1; i>=0; i--){ if(b&(1<<i)){ ans.push_back(1ll<<i); } } cout<<ans.size()<<endl; for(auto x:ans) cout<<x<<" "; cout<<endl; } int main() { int t; cin>>t; while(t--){ ll a, b; cin>>a>>b; solve(a, b); } return 0; }