| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313165 | 朱宸宇 | 【C2-4】求落地次数 | C++ | Accepted | 100 | 0 MS | 248 KB | 223 | 2025-03-19 17:44:26 |
#include <iostream> #include <cstdio> using namespace std; int main() { double sum=100; int cnt=0; while (sum>=0.5) { sum/=2; cnt++; } printf("%d",cnt); return 0; }