| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 361233 | admin_rjp | 【C1-T】计算三角形的面积 | C++ | Accepted | 100 | 5 MS | 248 KB | 110 | 2025-11-15 15:49:53 |
#include <iostream> using namespace std; int main(){ int a,h; cin>>a>>h; cout<<a*h/2.0; return 0; }