本文主要是介绍P8711 [蓝桥杯 2020 省 B1] 整除序列--2024冲刺蓝桥杯省一,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
点击跳转例题
模拟即可
#include <bits/stdc++.h> #define int long long //(有超时风险) #define PII pair<int,int> #define endl '\n' #define LL __int128using namespace std;const int N=2e6+10,M=1e3+10,mod=998244353,INF=0x3f3f3f3f;int a[N],b[N],c[N],pre[N];signed main() {std::ios::sync_with_stdio(false);std::cin.tie(nullptr);int n;cin>>n;vector<int>ans;while(n){ans.push_back(n);n/=2;}for(auto i:ans)cout<<i<<' ';return 0; }
这篇关于P8711 [蓝桥杯 2020 省 B1] 整除序列--2024冲刺蓝桥杯省一的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!