| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313789 | 郑宸煜 | 【C1-T】求平均分 | C++ | Wrong Answer | 0 | 1 MS | 248 KB | 119 | 2025-03-22 21:21:44 |
#include <iostream> using namespace std; int main(){ float a,b,c; cin>>a>>b>>c; cout<<(a+b+c)/3; return 0; }