結果

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

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

ソースコード

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