Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
38909 Jonas1mposter 整除序列 C++ 通过 100 0 MS 700 KB 157 2023-04-22 15:46:07

Tests(10/10):


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


测评信息: