結果
| 問題 | No.1009 面積の求め方 |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-03 12:57:14 |
| 言語 | Common Lisp (sbcl 2.6.7) |
| 結果 |
AC
不安定
|
| 実行時間 | 40 ms / 2,000 ms |
| + 302µs | |
| コード長 | 338 bytes |
| 記録 | |
| コンパイル時間 | 31 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 50,816 KB |
| 最終ジャッジ日時 | 2026-09-19 09:07:10 |
| 合計ジャッジ時間 | 2,010 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 19 SEP 2026 09:07:07 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.020
ソースコード
(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