Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5998 | WuSiQi | 【深基2.例8】再分肥宅水 | C++ | 通过 | 100 | 0 MS | 784 KB | 174 | 2020-08-22 10:14:37 |
#include <iostream> #include <cstdio> using namespace std; int main() { int n; double t; cin>> t >> n ; printf("%.3f\n",t/n); cout<< n*2; return 0 ; }