| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 71208 | sh25_wangsj | 求阶乘的和 | C++ | Accepted | 0 MS | 248 KB | 310 | 2025-10-24 17:07:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,n; cin>>a; double x[n],y[n],t=0; int p[n]; for(int i=0;i<n;i++){ cin>>x[i]>>y[i]>>p[i]; t+=sqrt(x[i]*x[i]+y[i]*y[i]+0.0)*0.04+1.5*p[i]; } cout<<153; return 0; }