Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
39131 a1s2d3f4 整除序列 C++ 通过 100 0 MS 704 KB 151 2023-04-30 15:03:57

Tests(10/10):


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


测评信息: