蓝桥杯历年真题第十一届蓝桥杯省赛第一场2065.整除序列On this page2065.整除序列tip原题链接:https://www.acwing.com/problem/content/2067/思路暴力即可代码#include <bits/stdc++.h>using namespace std;typedef unsigned long long ull;ull n;int main() { ios::sync_with_stdio(false); cin >> n; while (n) { cout << n << " "; n /= 2; } return 0;}