結果
問題 | No.1243 約数加算 |
ユーザー | GGanari |
提出日時 | 2024-05-24 09:32:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 777 bytes |
コンパイル時間 | 2,440 ms |
コンパイル使用メモリ | 203,952 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-24 09:32:42 |
合計ジャッジ時間 | 3,413 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define INF 1000000001 #define MOD 1000000007 #define long long long #define all(x) x.begin(),x.end() using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int t; cin >> t; while(t--) { long a,b; cin >> a >> b; int mx = -1; for(int i = 59; i>=0; i--) { if((b&(1LL<<i)) > (a&(1LL<<i))) { mx = i; break; } } vector<long> res; for(int i = 0; i<mx; i++) { if(a&(1LL<<i)) { res.push_back(1LL<<i); a+=1LL<<i; } } for(int i = 59; i>=0; i--) { if((b&(1LL<<i)) > (a&(1LL<<i))) { res.push_back(1LL<<i); a+=(1LL<<i); } } cout << res.size() << "\n"; for(int i = 0; i<res.size(); i++) cout << res[i] << " "; cout << "\n"; } return 0; }