| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 525 | 张弛 | 歌手打分 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 188 | 2019-09-20 21:44:34 |
#include<iostream> int main(){ int a,b,c,d,max,min; a=5*9.4; b=5*9.8; c=6*9.6; max=b-a; min=b-c; d=(b-max-min)/4; printf("%d",d); return 0; }