| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20782 | 张熠欣 | 三角形面积 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 135 | 2021-06-20 11:38:13 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,ans; cin>>a>>b; ans=(a*b)/2.00; cout<<ans; return 0; }