結果

問題 No.881 sin(x)/xの和
ユーザー Common LispCommon Lisp
提出日時 2024-11-11 18:39:54
言語 Common Lisp
(sbcl 2.3.8)
結果
RE  
実行時間 -
コード長 299 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 33,008 KB
実行使用メモリ 35,864 KB
最終ジャッジ日時 2024-11-11 18:39:56
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 11 NOV 2024 06:39:54 PM):

; file: /home/judge/data/code/Main.lisp
; in: DEFUN MAIN
;     (INCF RES A PI)
; 
; caught ERROR:
;   during macroexpansion of (INCF RES A ...). Use *BREAK-ON-SIGNALS* to intercept.
;   
;    Error while parsing arguments to DEFMACRO INCF:
;      too many elements in
;        (RES A PI)
;      to satisfy lambda list
;        (PLACE &OPTIONAL (DELTA)):
;      between 1 and 2 expected, but got 3

;     (A (FLOAT (READ) 0.0d0))
; 
; caught STYLE-WARNING:
;   The variable A is defined but never used.
; 
; compilation unit finished
;   caught 1 ERROR condition
;   caught 1 STYLE-WARNING condition


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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((query (read))
         (res 0d0))
    (dotimes (_ query)
      (let* ((x (read))
             (a (float (read) 0d0)))
        (declare (ignore x))
        (incf res a pi)))
    (format t "~f~%" (* res 3.14159265358979323846))))

(main)
0