結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー Common LispCommon Lisp
提出日時 2024-10-07 21:12:08
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 33,280 KB
実行使用メモリ 30,140 KB
最終ジャッジ日時 2024-10-07 21:12:10
合計ジャッジ時間 1,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
25,896 KB
testcase_01 AC 28 ms
28,104 KB
testcase_02 AC 8 ms
29,884 KB
testcase_03 AC 8 ms
25,896 KB
testcase_04 AC 8 ms
29,860 KB
testcase_05 AC 30 ms
25,896 KB
testcase_06 AC 8 ms
25,768 KB
testcase_07 AC 7 ms
27,976 KB
testcase_08 AC 7 ms
25,768 KB
testcase_09 AC 7 ms
25,896 KB
testcase_10 AC 7 ms
25,900 KB
testcase_11 AC 7 ms
25,768 KB
testcase_12 AC 8 ms
25,896 KB
testcase_13 AC 8 ms
27,980 KB
testcase_14 AC 21 ms
25,896 KB
testcase_15 AC 13 ms
26,028 KB
testcase_16 AC 24 ms
26,148 KB
testcase_17 AC 13 ms
29,992 KB
testcase_18 AC 24 ms
26,024 KB
testcase_19 AC 20 ms
27,984 KB
testcase_20 AC 33 ms
26,020 KB
testcase_21 AC 9 ms
25,892 KB
testcase_22 AC 14 ms
25,900 KB
testcase_23 AC 27 ms
26,020 KB
testcase_24 AC 29 ms
30,140 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 OCT 2024 09:12:08 PM):

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

ソースコード

diff #

; 6個以上の配列を用意してカウントしていく
; メモした配列の中から最大のものうちインデックスが最大のものを答える
(defun main ()
  (let* ((n (read))
         (memo (make-array 7 :initial-element 0)))
    (dotimes (_ n)
      (let ((m (read)))
        (incf (aref memo m))))
             ; reduce function sequence &key key from-end start end initial-value ⇒ result 
             ; reduce 関数は sequence の要素を(デフォルトでは)左から function を
             ; start から end まで順次適用していく
    (let ((l (reduce #'max memo)))
             ; position item sequence &key from-end test test-not start end key => position
             ; from-end t によって難易度が高い順に最大値を調べることができる
      (princ (position l memo :from-end t))
      (terpri))))

(main)

; (defun another-main ()
;   (let* ((n (read))
;          (xs (make-array 6 :initial-element 0))
;          (ans 1)
;          (v 0))
;     (dotimes (_ n)
;       (incf (aref xs (1- (read)))))
;     (dotimes (i 6)
;       (if (>= (aref xs i) v)
;           (progn
;            (setq ans (1+ i))
;            (setq v (aref xs i)))))
;     (princ ans)
;     (terpri)))
0