結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー つるつるのつぼ
提出日時 2025-11-10 21:32:27
言語 Common Lisp
(sbcl 2.5.0)
結果
AC  
実行時間 9 ms / 1,000 ms
コード長 195 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 30,260 KB
実行使用メモリ 21,988 KB
最終ジャッジ日時 2025-11-10 21:32:28
合計ジャッジ時間 986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 10 NOV 2025 09:32:27 PM):

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

ソースコード

diff #

(defun main ()
  (let (a b s)
    (with-input-from-string (in (read-line))
      (setf a (read in)
            b (read in)))
    (setf s (read-line))
    (format t "~D ~A~%" (+ a b) s)))

(main)
0