| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 308261 | 邵致远 | 【C1-T】求平均分 | C++ | Accepted | 100 | 3 MS | 244 KB | 177 | 2025-01-12 18:52:08 |
#include<iostream> #include<iomanip> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; cout<<fixed<<setprecision(2)<<(a+b+c)/3; return 0; }