結果

問題 No.1243 約数加算
ユーザー tyaro804tyaro804
提出日時 2020-10-02 22:41:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,747 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 167,596 KB
実行使用メモリ 814,380 KB
最終ジャッジ日時 2023-09-24 22:02:22
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 5 ms
4,380 KB
testcase_06 AC 5 ms
4,380 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for(int i = n-1; i >= 0; i--)
#define  all(x) (x).begin(),(x).end()     // 昇順ソート
#define  rall(v) (v).rbegin(), (v).rend() // 降順ソート
#define  FastIO ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define sz(x) ((int)(x).size())
typedef long long ll;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<vector<int>>;
using VL = vector<ll>;
using VVL = vector<vector<ll>>;
using VP = vector<P>;
template<typename T> void view(T e){std::cout << e << std::endl;}
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return true; } return false; }

const int inf = 1 << 30;
const ll INF = 1LL << 60;


int main(){
    int t;
    cin >> t;
    // random_device seed_gen;
    // mt19937_64 engine(seed_gen());
    while(t--){
        ll a, b;
        cin >> a >> b;
        // a = engine() % (ll) 1e18+1;
        // b = engine() % (ll) 1e18+1;
        // if (a > b) continue;
        VL ans;
        while(2*a <= b){
            ans.push_back(a);
            a *= 2;
        }
        while(a != b){
            if (a % 2 != 0){
                a++;
                ans.push_back(1);
            }
            ll num = 1, p = 1;
            ll diff = b - a;
            while(num <= diff){
                if (a % num == 0){
                    p = num;
                }
                num *= 2;
            }
            a += p;
            ans.push_back(p);
        }
        view(sz(ans));
        rep(i,sz(ans)) printf("%lld%c", ans[i], i==sz(ans)-1?'\n':' ');
    }
    return 0;
}
0