結果

問題 No.1512 作文
ユーザー motoshiramotoshira
提出日時 2021-05-21 22:27:01
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 1,101 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 39,812 KB
実行使用メモリ 72,024 KB
最終ジャッジ日時 2024-04-18 15:58:43
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 9 ms
22,144 KB
testcase_02 AC 8 ms
22,144 KB
testcase_03 AC 9 ms
22,144 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 17 ms
27,008 KB
testcase_10 AC 15 ms
27,136 KB
testcase_11 AC 14 ms
27,136 KB
testcase_12 AC 16 ms
27,136 KB
testcase_13 AC 14 ms
27,392 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 9 ms
22,400 KB
testcase_22 AC 9 ms
22,144 KB
testcase_23 AC 9 ms
22,528 KB
testcase_24 AC 8 ms
22,400 KB
testcase_25 WA -
testcase_26 AC 8 ms
22,144 KB
testcase_27 AC 8 ms
22,144 KB
testcase_28 AC 8 ms
22,144 KB
testcase_29 WA -
testcase_30 AC 8 ms
22,144 KB
testcase_31 AC 9 ms
22,272 KB
testcase_32 AC 8 ms
22,272 KB
testcase_33 AC 9 ms
22,144 KB
testcase_34 AC 11 ms
23,168 KB
testcase_35 AC 25 ms
33,408 KB
testcase_36 AC 25 ms
33,536 KB
testcase_37 AC 24 ms
28,800 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 61 ms
62,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 18 APR 2024 03:58:40 PM):

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

ソースコード

diff #

(declaim (inline println))
(defun println (obj &optional (stream *standard-output*))
  (let ((*read-default-float-format* 'double-float))
    (prog1 obj
      (princ obj stream)
      (terpri stream))))

(defun ok (xs)
  (sb-int:named-let rec ((xs xs)
                         (c #\a))
    (or (null xs)
        (and (char<= c (first xs))
             (rec (rest xs)
                  (first xs))))))

(defun get-l-and-r (xs)
  (when (ok xs)
    (list (length xs)
          (first (sort (copy-seq xs) #'char<))
          (first (sort (copy-seq xs) #'char>)))))

(define-modify-macro maxf (var) max)

(defun char->int (c)
  (- (char-code c)
     (char-code #\a)))

(defun main ()
  (let* ((n (read))
         (ss (sort (remove-if #'null (mapcar #'get-l-and-r (loop repeat n collect (concatenate 'list (read-line))))) #'char< :key #'second)))
    (let ((dp (make-array 26 :initial-element 0)))
      (loop for (cnt l r) in ss
            do (maxf (aref dp (char->int r))
                     (+ (aref dp (char->int l))
                        cnt)))
      (println (reduce #'max dp)))))

#-swank (main)
0