結果

問題 No.46 はじめのn歩
ユーザー まんしmaNNshi
提出日時 2025-03-16 13:54:01
言語 Common Lisp
(sbcl 2.5.0)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 33,020 KB
実行使用メモリ 25,764 KB
最終ジャッジ日時 2025-03-16 13:54:03
合計ジャッジ時間 1,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 16 MAR 2025 01:54:01 PM):

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

ソースコード

diff #

(defvar input (read-line))
(setq input (read-from-string (concatenate 'string "(" input ")")))
(defvar a (car input))
(defvar b (car (cdr input)))
(format t "~d~%" (ceiling (/ b a)))
0