結果
| 問題 | No.1243 約数加算 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-31 03:05:00 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,704 bytes |
| 記録 | |
| コンパイル時間 | 4,296 ms |
| コンパイル使用メモリ | 378,436 KB |
| 実行使用メモリ | 386,280 KB |
| 最終ジャッジ日時 | 2026-03-31 03:05:06 |
| 合計ジャッジ時間 | 5,799 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
//using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
using i128 = __int128_t;
using u128 = unsigned __int128_t;
using mint = atcoder::static_modint<998244353>;
const int mod = 998244353;
#include <chrono>
mt19937_64 rng(std::chrono::steady_clock::now().time_since_epoch().count());
int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1};
int dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};
template<class T>
bool chmin(T& a, const T& b){
if (b < a){
a = b;
return true;
}
else {
return false;
}
}
template<class T>
bool chmax(T& a, const T& b){
if (a < b){
a = b;
return true;
}
else {
return false;
}
}
void solve(){
ll a, b;
cin >> a >> b;
int idx = 0;
for (int i = 60; i >= 0; i--){
if ((b >> i) & 1){
idx = i;
break;
}
}
vector<ll> ans;
for (int i = 0; i <= 60; i++){
if ((a >> i) & 1){
if (a + (1LL << i) <= b){
ans.push_back(1LL << i);
a += (1LL << i);
}
}
}
while(a != b){
for (int i = 60; i >= 0; i--){
if (a + (1LL << i) <= b){
ans.push_back(1LL << i);
a += (1LL << i);
}
}
}
cout << (int)ans.size() << '\n';
for (auto d : ans){
cout << d << ' ';
}
cout << '\n';
cout << a << ' ' << b << '\n';
};
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while(t--){
cout << fixed << setprecision(15);
solve();
}
}