結果
問題 | No.9013 台形の面積 |
ユーザー | YK2VAb5fm2NPlaU |
提出日時 | 2022-05-31 10:21:56 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 274 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 27,136 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 01:10:47 |
合計ジャッジ時間 | 831 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#include <stdio.h> int main(void){ float v; //上底の長さ float b; //下底の長さ float h; //高さ scanf("%d %d %d", &v, &b, &h); float A; A = (float)((v + b) * h) / 2; printf("%.2", A); return 0; }