| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 21292 | 202102bxy | 三角形面积 | C++ | Accepted | 100 | 0 MS | 252 KB | 130 | 2021-06-27 11:24:30 |
#include<bits/stdc++.h> using namespace std; double d,h,ans; int main(){ cin>>d>>h; printf("%.2lf",d*h/2.0); return 0; }