結果

問題 No.456 Millions of Submits!
ユーザー Common LispCommon Lisp
提出日時 2024-11-20 13:42:24
言語 Common Lisp
(sbcl 2.3.8)
結果
TLE  
実行時間 -
コード長 1,134 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 36,396 KB
実行使用メモリ 88,992 KB
最終ジャッジ日時 2024-11-20 13:43:29
合計ジャッジ時間 64,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
36,940 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 RE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 20 NOV 2024 01:42:24 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((*read-default-float-format* 'double-float)
         (m (read)))
    (dotimes (_ m)
      (let* ((a (read))
             (b (read))
             (c (float (read) 0d0)))
        (format t "~14,12f~%" (cond ((zerop a) (exp (expt c (/ 1d0 b))))
                                    ((zerop b) (expt c (/ 1d0 a)))
                                    (t (let* ((logc (log c))
                                              (n 3)
                                              (logn (log n))
                                              (f (- (+ (* a logn) (* b (log logn))) logc)))
                                         (loop while (> (abs f) double-float-epsilon) do
                                                 (decf n (/ f (/ (+ a (/ b (log n))) n)))
                                                 (setf logn (log n)
                                                       f (- (+ (* a logn) (* b (log logn))) logc))
                                                 (loop while (<= n 1d0) do (incf n 0.2d0)))
                                         n))))))))

(main)
0