Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
39130 a1s2d3f4 整除序列 C++ 解答错误 0 0 MS 700 KB 150 2023-04-30 15:03:03

Tests(0/10):


#include<iostream> using namespace std; int main(){ long long n; cin>>n; cout<<n; while(n>0){ n/=2; cout<<' '<<n; } return 0; }


测评信息: