結果

問題 No.239 にゃんぱすー
ユーザー Common LispCommon Lisp
提出日時 2024-10-08 17:51:07
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 32,864 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-10-08 17:51:10
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,888 KB
testcase_01 AC 9 ms
21,888 KB
testcase_02 AC 10 ms
21,888 KB
testcase_03 AC 9 ms
21,760 KB
testcase_04 AC 9 ms
21,888 KB
testcase_05 AC 10 ms
21,888 KB
testcase_06 AC 9 ms
21,888 KB
testcase_07 AC 9 ms
21,888 KB
testcase_08 AC 10 ms
21,888 KB
testcase_09 AC 10 ms
21,888 KB
testcase_10 AC 11 ms
21,760 KB
testcase_11 AC 10 ms
21,888 KB
testcase_12 AC 11 ms
22,144 KB
testcase_13 AC 12 ms
22,144 KB
testcase_14 AC 12 ms
22,144 KB
testcase_15 AC 13 ms
22,144 KB
testcase_16 AC 14 ms
22,400 KB
testcase_17 AC 26 ms
22,272 KB
testcase_18 AC 16 ms
22,528 KB
testcase_19 AC 17 ms
22,656 KB
testcase_20 AC 19 ms
22,784 KB
testcase_21 AC 19 ms
22,784 KB
testcase_22 AC 20 ms
22,912 KB
testcase_23 AC 22 ms
22,912 KB
testcase_24 AC 25 ms
23,296 KB
testcase_25 AC 26 ms
23,552 KB
testcase_26 AC 28 ms
23,552 KB
testcase_27 AC 11 ms
21,888 KB
testcase_28 AC 11 ms
21,888 KB
testcase_29 AC 11 ms
22,144 KB
testcase_30 AC 13 ms
22,272 KB
testcase_31 AC 15 ms
22,400 KB
testcase_32 AC 18 ms
22,528 KB
testcase_33 AC 19 ms
22,656 KB
testcase_34 AC 23 ms
22,912 KB
testcase_35 AC 27 ms
23,424 KB
testcase_36 AC 29 ms
23,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 OCT 2024 05:51:07 PM):

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

ソースコード

diff #

; ある村民が何回 nyanpass と発言したかをメモしていく
; 最後に n - 1 の数が1つだけであればそれが答え
(defun main ()
  (let* ((n (read))
         (memo (make-array n :initial-element 0)))
    (dotimes (i n)  ; i 人目の人が受けた挨拶
      (dotimes (j n); j 人目の人がした挨拶
        (when (eql 'nyanpass (read)); nyanpass シンボルと等しいときにメモする
              (incf (aref memo j)))))
                  ; count item sequence &key from-end start end key test test-not ⇒ n
                  ; n - 1 回挨拶した人が一人かどうかで場合分け
    (princ (if (= (count (1- n) memo) 1)
               ; 配列が 0 から始まっているので 1 を足す
               (1+
                   ; position item sequence &key from-end test test-not start end key ⇒ position
                   ; n - 1 回挨拶した人の番号を探す
                  (position (1- n) memo))
               -1))
    (terpri)))
(main)
0