結果

問題 No.9013 台形の面積
ユーザー keidenkeiden
提出日時 2024-09-12 23:35:11
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-09-12 23:35:13
合計ジャッジ時間 1,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
28,672 KB
testcase_01 AC 91 ms
28,544 KB
testcase_02 AC 91 ms
28,544 KB
testcase_03 AC 92 ms
28,288 KB
testcase_04 AC 92 ms
28,672 KB
testcase_05 AC 92 ms
28,544 KB
testcase_06 AC 90 ms
28,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.base)
(use scheme.read)
(use scheme.write)
(use gauche.base)
(use srfi.152)


(define yuki9013
  (let*
    (
      (ubh (map string->number (string-split (read-line) ",")))
      (u (car ubh))
      (b (car (cdr ubh)))
      (h (car (cdr (cdr ubh))))
    )
    (format #t "~,2f~%" (/ (* (+ u b) h) 2))
  )
)
0