結果

問題 No.185 和風
コンテスト
ユーザー Takashi_Oda
提出日時 2026-06-07 03:35:09
言語 Common Lisp
(sbcl 2.6.3)
コンパイル:
sbclc _filename_
実行:
sbcl --script Main.fasl
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 299 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 365 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2026-06-07 03:35:10
合計ジャッジ時間 1,128 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
純コード判定待ち
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 JUN 2026 03:35:08 AM):

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

ソースコード

diff #
raw source code

(defparameter *N* (read))

(defun formula (a x y) (if (= a (- y x)) (- y x) -1))

(defun solve ()
    (let* ((x_1 (read)) (y_1 (read)) (a (if (>= 0 (- y_1 x_1)) -1 (- y_1 x_1))))
    (dotimes (i (1- *N*)) (setq a (formula a (read) (read))))
    a))

(defun main () (format t "~A~%" (solve)))

(main)
0