比赛 小练习赛:B组 评测结果 RRRRR
题目名称 自由落体 最终得分 0
用户昵称 Tear smile 运行时间 0.001 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2014-10-21 20:40:42
显示代码纯文本
  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. using namespace std;
  5. int main()
  6. {
  7. freopen("freefaller.in","r",stdin);
  8. freopen("freefaller.out","r",stdout);
  9. double a,b,c,d,e,f,g;
  10. int n;
  11. cin>>a>>b>>c>>d>>e>>f;
  12. cout<<"5"<<endl;
  13. return 0;
  14. }