| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 41149 | wuxinyue | 救援 | C++ | Wrong Answer | 1 MS | 256 KB | 279 | 2024-02-19 18:43:55 |
#include <bits/stdc++.h> using namespace std ; int main(){ int i=1; int n; cin>>n; double m; double sum=0; while(i<=n){ int x,y,p; cin>>x; cin>>y; cin>>p; m=((x+y)/50)*2+p*1.5; sum+=m; i++; } cout<<fixed<<setprecision(0)<<m; return 0; }