| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 394 | 张曦元 | 歌手打分 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 155 | 2019-09-18 23:03:06 |
#include <iostream> int main(){ float a,b,c,d,e; a=9.6; b=9.4; c=9.8; d=(a*6-b*5)+(a*6-c*5); e=(9.6*6-d)/4; printf("%f",e); return 0; }