結果

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

テストケース

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

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

ソースコード

diff #

; 6個以上の配列を用意してカウントしていく
; メモした配列の中から最大のものうちインデックスが最大のものを答える

(defun 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)))

(main)

; (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))))
0