結果
| 問題 | No.1009 面積の求め方 |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-03 12:57:14 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 35 ms / 2,000 ms |
| コード長 | 338 bytes |
| 記録 | |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 35,680 KB |
| 実行使用メモリ | 60,896 KB |
| 最終ジャッジ日時 | 2026-05-06 02:06:31 |
| 合計ジャッジ時間 | 2,075 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 MAY 2026 02:06:28 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.095
ソースコード
(defconstant +diff+ 100000)
(defun main (&rest argv)
(declare (ignorable argv))
(let* ((a (read))
(b (read))
(c (float a 1d0))
(d 0d0))
(loop while (< c b)
do (incf d (/ (float (abs (* (- c a) (- c b))) 1d0) +diff+))
(incf c (/ 1d0 +diff+)))
(format t "~f~%" d)))
(main)
Common Lisp