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