Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
47676 pengyinming 整除序列 C++ 通过 100 1 MS 700 KB 144 2024-02-01 14:20:22

Tests(10/10):


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


测评信息: