結果

問題 No.162 8020運動
ユーザー Common LispCommon Lisp
提出日時 2024-11-11 16:14:56
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 1,482 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 34,048 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-11 16:14:59
合計ジャッジ時間 1,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,888 KB
testcase_01 AC 9 ms
22,016 KB
testcase_02 AC 10 ms
22,144 KB
testcase_03 AC 10 ms
22,400 KB
testcase_04 AC 10 ms
22,400 KB
testcase_05 AC 10 ms
22,400 KB
testcase_06 AC 10 ms
22,400 KB
testcase_07 AC 10 ms
22,400 KB
testcase_08 AC 9 ms
22,400 KB
testcase_09 AC 9 ms
21,888 KB
testcase_10 AC 9 ms
22,272 KB
testcase_11 AC 9 ms
22,144 KB
testcase_12 AC 9 ms
22,016 KB
testcase_13 AC 10 ms
22,400 KB
testcase_14 AC 9 ms
21,888 KB
testcase_15 AC 9 ms
21,888 KB
testcase_16 AC 9 ms
22,016 KB
testcase_17 AC 9 ms
22,016 KB
testcase_18 AC 10 ms
22,400 KB
testcase_19 AC 9 ms
22,144 KB
testcase_20 AC 10 ms
22,144 KB
testcase_21 AC 10 ms
22,272 KB
testcase_22 AC 9 ms
22,272 KB
testcase_23 AC 10 ms
22,144 KB
testcase_24 AC 10 ms
22,272 KB
testcase_25 AC 9 ms
22,400 KB
testcase_26 AC 10 ms
21,888 KB
testcase_27 AC 9 ms
22,144 KB
testcase_28 AC 9 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 11 NOV 2024 04:14:56 PM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.042

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((a (read))
         (p0 (/ (float (read) 0d0) 100d0))
         (p1 (/ (float (read) 0d0) 100d0))
         (p2 (/ (float (read) 0d0) 100d0))
         (p (make-array 3 :element-type 'double-float :initial-contents (list p0 p1 p2)))
         (dp (make-array (list (+ 81 (- a)) 15 2) :element-type 'double-float :initial-element 0d0)))
    (loop for i from 1 to 14 do (dotimes (j 2) (setf (aref dp 0 i j) (float i 0d0))))
    (loop for i from 1 to (- 80 a) do
          (loop for j from 1 to 14 do
                (dotimes (k 2)
                  (if (= j 1)
                      (setf (aref dp i j k) (* (- 1d0 (aref p k))
                                               (aref dp (1- i) j 0)))
                      (let ((tmp 1d0))
                        (dotimes (l j)
                          (let ((x (if (or (and (zerop l) (zerop k))
                                           (= j (1+ l)))
                                       (aref p 1)
                                       (aref p 2))))
                            (incf (aref dp i j k)
                                  (* tmp x (+ (aref dp (1- i) l 0)
                                              (aref dp i (- j l 1) 1))))
                            (setq tmp (* tmp (- 1d0 x)))))
                        (incf (aref dp i j k)
                              (* tmp (aref dp (1- i) j 0))))))))
    (format t "~f~%" (* 2 (aref dp (- 80 a) 14 0)))))

(main)
0