結果

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

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

ソースコード

diff #

(defvar input (read-line))
(setq input (read-from-string (concatenate 'string "(" input ")")))
(defvar a (car input))
(defvar b (car (cdr input)))
(print (ceiling (/ b a))) (terpri)
0