| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150344 | 解禾溪 | 03自由落体 | C++ | Accepted | 1 MS | 260 KB | 355 | 2026-03-27 18:32:14 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double G=9.8; cout<<5*G<<endl; cout<<10*G<<endl; cout<<15*G<<endl; return 0; }