比赛 |
20111109 |
评测结果 |
AWAAAAAWAA |
题目名称 |
摩托车游戏 |
最终得分 |
80 |
用户昵称 |
Citron酱 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2011-11-09 10:23:31 |
显示代码纯文本
#include <fstream>
#include <iomanip>
#define I_F "carz.in"
#define O_F "carz.out"
int main()
{
long s,t;
std::ifstream fin(I_F);
fin>>s>>t;
fin.close();
if (s<=10)
t=100;
else if (s<=20)
t=90;
else if (s<=30)
t=80;
else if (s<=40)
t=75;
else
t=70;
std::ofstream fout(O_F);
fout<<std::setiosflags(std::ios::fixed)<<std::setprecision(2)<<(double)s/t<<std::endl;
fout.close();
}