Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55796 | zhangweiran | 救援 | C++ | 通过 | 0 MS | 248 KB | 312 | 2024-11-08 15:28:34 |
#include<iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; int x[n],y[n],p[n]; double d; double total=0; for(int i=0;i<=n-1;i++) { cin>>x[i]>>y[i]>>p[i]; d=hypot(x[i],y[i]); total+=d*2.0/50+p[i]*1.5; } double t=ceil(total); cout<<t<<endl; return 0; }