| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 127 | 孙灏洋 | 歌手打分 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 155 | 2019-09-17 20:40:42 |
#include<iostream> int main(){ double a,b,c,d,e,f; a=6*9.6; b=5*9.4; c=5*9.8; d=a-b; e=a-c; f=(a-d-c)/4; printf("%.1lf",f); return 0; }