結果
| 問題 | No.1622 三角形の面積 | 
| コンテスト | |
| ユーザー |  Common Lisp | 
| 提出日時 | 2024-11-06 09:08:12 | 
| 言語 | Common Lisp (sbcl 2.5.0) | 
| 結果 | 
                                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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 4 | 
コンパイルメッセージ
; 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)
            
            
            
        