ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#185513 | #1118. 求三角形的面积 | luojianwei221625 | 100 | 0ms | 1272kb | C++ | 161b | 2023-09-30 08:28:58 | 2023-09-30 08:29:00 |
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, h;
cin >> a >> h;
cout << fixed << setprecision(2) << a * h * 1.0 / 2;
return 0;
}
Details
小提示:点击横条可展开更详细的信息
Test #1:
score: 50
Accepted
time: 0ms
memory: 1264kb
input:
3 4
output:
6.00
result:
ok single line: '6.00'
Test #2:
score: 50
Accepted
time: 0ms
memory: 1272kb
input:
17 17
output:
144.50
result:
ok single line: '144.50'