結果

問題 No.2561 みんな大好きmod 998
ユーザー Common LispCommon Lisp
提出日時 2024-11-05 23:32:55
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 528 ms / 4,000 ms
コード長 807 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 33,372 KB
実行使用メモリ 188,908 KB
最終ジャッジ日時 2024-11-05 23:33:03
合計ジャッジ時間 7,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
28,112 KB
testcase_01 AC 29 ms
35,044 KB
testcase_02 AC 9 ms
26,020 KB
testcase_03 AC 516 ms
188,908 KB
testcase_04 AC 526 ms
184,840 KB
testcase_05 AC 503 ms
188,908 KB
testcase_06 AC 528 ms
184,964 KB
testcase_07 AC 10 ms
30,116 KB
testcase_08 AC 10 ms
26,024 KB
testcase_09 AC 12 ms
30,396 KB
testcase_10 AC 11 ms
32,140 KB
testcase_11 AC 72 ms
49,252 KB
testcase_12 AC 10 ms
26,028 KB
testcase_13 AC 11 ms
30,112 KB
testcase_14 AC 10 ms
26,024 KB
testcase_15 AC 504 ms
186,876 KB
testcase_16 AC 11 ms
30,144 KB
testcase_17 AC 11 ms
28,104 KB
testcase_18 AC 9 ms
26,152 KB
testcase_19 AC 392 ms
184,840 KB
testcase_20 AC 11 ms
26,148 KB
testcase_21 AC 10 ms
26,024 KB
testcase_22 AC 10 ms
30,136 KB
testcase_23 AC 10 ms
26,156 KB
testcase_24 AC 10 ms
26,024 KB
testcase_25 AC 10 ms
26,028 KB
testcase_26 AC 97 ms
57,568 KB
testcase_27 AC 501 ms
188,656 KB
testcase_28 AC 128 ms
67,940 KB
testcase_29 AC 43 ms
41,176 KB
testcase_30 AC 113 ms
71,996 KB
testcase_31 AC 268 ms
135,664 KB
testcase_32 AC 61 ms
49,320 KB
testcase_33 AC 44 ms
41,172 KB
testcase_34 AC 511 ms
188,756 KB
testcase_35 AC 40 ms
41,036 KB
testcase_36 AC 40 ms
36,960 KB
testcase_37 AC 24 ms
34,988 KB
testcase_38 AC 73 ms
49,380 KB
testcase_39 AC 112 ms
67,940 KB
testcase_40 AC 113 ms
71,736 KB
testcase_41 AC 72 ms
49,248 KB
testcase_42 AC 126 ms
67,816 KB
testcase_43 AC 23 ms
30,808 KB
testcase_44 AC 56 ms
43,368 KB
testcase_45 AC 397 ms
186,880 KB
testcase_46 AC 49 ms
39,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 NOV 2024 11:32:55 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (k (read))
         (a (loop repeat n collect (read)))
         (dp (list (cons 0 0)))
         (m1 998)
         (m2 998244353))
    (dolist (b a)
      (let ((new-dp dp))
        (dolist (x dp)
          (destructuring-bind
              (s . c)
              x
            (when (< c k)
                  (push (cons (+ s b) (1+ c)) new-dp)))
          (setf dp new-dp))))
    (let ((res (mod
                 (count-if
                     (lambda (x) (destructuring-bind
                                     (s . c)
                                     x
                                   (and (= c k) (<= (mod s m2) (mod s m1)))))
                     dp)
                 m1)))
      (format t "~d~%" res))))

(main)
0