結果

問題 No.1373 Directed Operations
ユーザー linuxmetellinuxmetel
提出日時 2021-02-05 21:56:22
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-07-02 12:27:12
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
21,888 KB
testcase_01 AC 9 ms
21,760 KB
testcase_02 AC 181 ms
25,088 KB
testcase_03 AC 36 ms
25,088 KB
testcase_04 AC 65 ms
25,088 KB
testcase_05 AC 9 ms
21,760 KB
testcase_06 AC 240 ms
25,088 KB
testcase_07 AC 14 ms
21,888 KB
testcase_08 AC 34 ms
22,144 KB
testcase_09 AC 98 ms
25,088 KB
testcase_10 AC 84 ms
24,576 KB
testcase_11 AC 27 ms
22,656 KB
testcase_12 AC 81 ms
24,448 KB
testcase_13 AC 17 ms
22,272 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 JUL 2024 12:27:07 PM):

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

ソースコード

diff #

(defvar n (read))

(defparameter a (sort (apply #'vector -100000000 (loop repeat (1- n)
                                                       collect (read))) #'<))

(defvar f nil)                                         
(loop for i from 1 to (1- n) 
      until f             
      do (unless (<= (aref a i) i)
           (setq f t)))   

(if f                                    
    (progn (princ "NO")
           (fresh-line))                 
    (progn (princ "YES")
           (fresh-line)                  
           (loop for i from 1 to (1- n) 
                 do (princ (1+ (- i (aref a i))))
                    (fresh-line)))) 
;(princ a)
0