| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 323677 | 孙一铭 | 【C1-T】求平均分 | C++ | Accepted | 100 | 2 MS | 256 KB | 166 | 2025-05-21 15:50:36 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; double s=a+b+c; cout<<fixed<<setprecision(2)<<s/3<<endl; return 0; }