結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー つるつるのつぼ
提出日時 2025-11-10 21:32:27
言語 Common Lisp
(sbcl 2.6.3)
コンパイル:
sbclc _filename_
実行:
sbcl --script Main.fasl
結果
AC  
実行時間 5 ms / 1,000 ms
+ 374µs
コード長 195 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 13 ms
コンパイル使用メモリ 26,496 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2026-07-16 10:55:52
合計ジャッジ時間 742 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 16 JUL 2026 10:55:51 AM):

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

ソースコード

diff #
raw source code

(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