結果
| 問題 | No.185 和風 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-06-07 03:31:36 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 298 bytes |
| 記録 | |
| コンパイル時間 | 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
ソースコード
(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)