| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 335139 | 李俞家骅 | 【C1-T】计算三角形的面积 | C++ | Accepted | 100 | 1 MS | 244 KB | 115 | 2025-07-21 21:57:17 |
#include<iostream> using namespace std; int main() { double b,h; cin>>b>>h; cout<<b*h/2; return 0; }