| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 124054 | 田子熙 | 13自由落体 | C++ | Wrong Answer | 1 MS | 276 KB | 165 | 2025-07-10 16:33:12 |
#include<bits/stdc++.h> using namespace std; int main(){ int cnt=0; long long n; cin>>n; while(n>0){ n=n/10; cnt++; } cout<<cnt; return 0; }
------Input------
0
------Answer-----
299.804688 0.097656
------Your output-----
0