| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 21268 | 邱修齐 | 三角形面积 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 136 | 2021-06-27 08:40:09 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b; c=a*b/2.0; printf("%.2ld",c); return 0; }