結果
問題 | No.1243 約数加算 |
ユーザー | milanis48663220 |
提出日時 | 2020-10-02 21:45:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 2,431 ms |
コンパイル使用メモリ | 85,452 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 04:37:38 |
合計ジャッジ時間 | 2,976 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
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 | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> using namespace std; typedef long long ll; ll N; int K; ll A[100]; void solve(){ ll a, b; cin >> a >> b; vector<ll> ans; if(a == b){ cout << 0 << endl; return; } ll m = (a^b)&b; ll x = 0; for(int i = 60; i >= 0; i--){ if(m&((ll)1<<i)){ x = i; break; } } for(int i = 0; i < x; i++){ if(a&((ll)1<<i)){ a += ((ll)1<<i); ans.push_back((ll)1<<i); } } for(int i = x-1; i >= 0; i--){ if(b&((ll)1<<i)){ ans.push_back((ll)1<<i); } } cout << ans.size() << endl; for(ll i : ans) cout << i << ' '; cout << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; for(int i = 0; i < t; i++) solve(); }