結果
問題 | No.456 Millions of Submits! |
ユーザー | Common Lisp |
提出日時 | 2024-11-20 13:40:44 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,122 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 37,668 KB |
実行使用メモリ | 118,340 KB |
最終ジャッジ日時 | 2024-11-20 13:41:52 |
合計ジャッジ時間 | 63,058 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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:40:49 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.057
ソースコード
(defun main (&rest argv) (declare (ignorable argv)) (let* ((*read-default-float-format* 'double-float) (m (read))) (dotimes (_ m) (let* ((a (read)) (b (read)) (c (read))) (format t "~13,11f~%" (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)