結果
問題 | No.1622 三角形の面積 |
ユーザー | Common Lisp |
提出日時 | 2024-11-06 09:08:12 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 216 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 37,016 KB |
実行使用メモリ | 30,116 KB |
最終ジャッジ日時 | 2024-11-06 09:08:13 |
合計ジャッジ時間 | 769 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
25,768 KB |
testcase_01 | AC | 12 ms
30,116 KB |
testcase_02 | AC | 11 ms
26,020 KB |
testcase_03 | AC | 11 ms
26,024 KB |
testcase_04 | AC | 11 ms
26,028 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 NOV 2024 09:08:11 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.007
ソースコード
(defun main (&rest argv) (declare (ignorable argv)) (let* ((query (read))) (dotimes (_ query) (flet ((f (r) (/ (* 3d0 1.732050807568877d0 (* r r)) 4d0))) (format t "~f~%" (f (read))))))) (main)