結果
問題 | No.149 碁石の移動 |
ユーザー |
![]() |
提出日時 | 2024-11-04 22:08:39 |
言語 | Common Lisp (sbcl 2.5.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 315 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 35,072 KB |
実行使用メモリ | 31,896 KB |
最終ジャッジ日時 | 2024-11-04 22:08:40 |
合計ジャッジ時間 | 1,539 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 04 NOV 2024 10:08:39 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.005
ソースコード
(defun main (&rest argv)(declare (ignorable argv))(let* ((aw (read))(ab (read))(bw (read))(bb (read))(c (read))(d (read))(res (- (+ aw (min (+ bw (max 0 (- c ab))) d)) (max 0 (- c ab)))))(declare (ignore bb))(format t "~d~%" res)))(main)