当前位置: 首页 > article >正文

P8711 [蓝桥杯 2020 省 B1] 整除序列--2024冲刺蓝桥杯省一

点击跳转例题

模拟即可

#include <bits/stdc++.h>
#define int long long //(有超时风险)
#define PII pair<int,int>
#define endl '\n'
#define LL __int128

using 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;
}


http://www.kler.cn/a/228264.html

相关文章:

  • Effective Python系列(1.1):区别bytes和str
  • 为AI聊天工具添加一个知识系统 之63 详细设计 之4:AI操作系统 之2 智能合约
  • 使用飞桨AI Studio平台训练数据,并进行图像识别分析得牡丹花测试
  • [Computer Vision]实验二:图像特征点提取
  • Flutter:搜索页,搜索bar封装
  • SpringBoot集成Flink-CDC,实现对数据库数据的监听
  • Android消息通知Notification
  • http伪造本地用户字段系列总结
  • 将xyz格式的GRACE数据转成geotiff格式
  • SOLID原理:用Golang的例子来解释
  • k8s 部署 nocas 同时部署mysql
  • 如何使用 Supabase Auth 在您的应用程序中设置身份验证
  • C/C++内存管理的底层调用逻辑
  • 使用post-css实现移动端适配
  • Leetcode 3026. Maximum Good Subarray Sum
  • gd32F470配置CAN通信
  • R语言学习case10:ggplot基础画图Parallel Coordinate Plot 平行坐标图
  • C#学习(十二)——Linq
  • 深度学习系列57: 清华大模型MiniCPM上手
  • STM32F407移植OpenHarmony笔记9
  • 算法刷题day05
  • idea常用设置
  • sentinel的Context创建流程分析
  • 【递归】 92. 反转链表 II
  • FPGA开发
  • 【Spring Boot 3】【@Scheduled】多线程执行定时任务