| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 31533 | lnx | 球弹跳高度的计算 | C++ | Wrong Answer | 0 MS | 252 KB | 159 | 2023-11-19 14:56:45 |
#include<iostream> using namespace std; int main() { int h; cin>>h; double a=h*2.99609375; double b=h*0.00390625; cout<<a<<endl<<b; return 0; }