Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1301 | 杨洋杰 | 03自由落体 | C++ | Wrong Answer | 0 MS | 260 KB | 151 | 2023-08-23 16:02:41 |
#include<iostream> using namespace std; int main(){ int g=9.8; int v; cout<<5*g<<endl; cout<<10*g<<endl; cout<<15*g<<endl; return 0; }
------Input------
0
------Answer-----
49 98 147
------Your output-----
45 90 135