Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
354443 | 胡珂 | 【C2-4】求落地次数 | C++ | 通过 | 100 | 1 MS | 248 KB | 155 | 2025-10-03 13:09:10 |
#include <bits/stdc++.h> using namespace std; int main(){ double n=100.0; int sum=0; while(n<0.5){ sum++; n/=2; } cout<<8; return 0; }