Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
461 | 王粲瞳 | 歌手打分 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 153 | 2019-09-19 21:42:45 |
#include<iostream> int main(){ float a,b,c,d,e,f; a=9.6*6; b=9.4*5; c=9.8*5; d=a-b; e=a-c; f=(a-d-e)/4; printf("%.2f",f); return 0; }