結果
問題 | No.1243 約数加算 |
ユーザー | Mister |
提出日時 | 2020-11-04 05:53:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 718 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 73,984 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 09:40:05 |
合計ジャッジ時間 | 1,552 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> using lint = long long; void solve() { lint x, y; std::cin >> x >> y; std::vector<lint> ans; while (x != y) { int r = 60; while (true) { if (((y >> r) & 1) && ((~x >> r) & 1)) break; --r; } int l; for (l = 0; l < r; ++l) { if ((x >> l) & 1) break; } ans.push_back(1LL << l); x += (1LL << l); } std::cout << ans.size() << "\n"; for (auto a : ans) std::cout << a << " "; std::cout << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int q; std::cin >> q; while (q--) solve(); return 0; }