| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 10100 | 贺昱翔 | 歌手打分 | C++ | Accepted | 100 | 0 MS | 248 KB | 180 | 2020-11-27 18:33:07 |
#include<bits/stdc++.h> using namespace std; int main(){ double max=9.6*6-9.4*5; double min=9.6*6-9.8*5; double avg=(9.6*6-max-min)/4; printf("%.1lf",avg); return 0; }