結果

問題 No.2561 みんな大好きmod 998
ユーザー Common LispCommon Lisp
提出日時 2024-11-05 23:27:19
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 565 ms / 4,000 ms
コード長 581 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 35,648 KB
実行使用メモリ 186,880 KB
最終ジャッジ日時 2024-11-05 23:27:28
合計ジャッジ時間 8,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
26,024 KB
testcase_01 AC 30 ms
35,040 KB
testcase_02 AC 10 ms
27,980 KB
testcase_03 AC 565 ms
184,840 KB
testcase_04 AC 502 ms
184,712 KB
testcase_05 AC 501 ms
184,840 KB
testcase_06 AC 530 ms
184,712 KB
testcase_07 AC 11 ms
30,116 KB
testcase_08 AC 11 ms
26,024 KB
testcase_09 AC 12 ms
26,408 KB
testcase_10 AC 11 ms
29,992 KB
testcase_11 AC 73 ms
49,380 KB
testcase_12 AC 11 ms
28,112 KB
testcase_13 AC 9 ms
26,024 KB
testcase_14 AC 11 ms
28,108 KB
testcase_15 AC 510 ms
186,880 KB
testcase_16 AC 15 ms
30,272 KB
testcase_17 AC 10 ms
25,896 KB
testcase_18 AC 12 ms
28,108 KB
testcase_19 AC 398 ms
184,840 KB
testcase_20 AC 11 ms
26,152 KB
testcase_21 AC 11 ms
27,984 KB
testcase_22 AC 11 ms
30,112 KB
testcase_23 AC 11 ms
26,028 KB
testcase_24 AC 11 ms
28,064 KB
testcase_25 AC 11 ms
28,108 KB
testcase_26 AC 98 ms
57,704 KB
testcase_27 AC 527 ms
184,840 KB
testcase_28 AC 129 ms
67,692 KB
testcase_29 AC 42 ms
39,136 KB
testcase_30 AC 112 ms
71,888 KB
testcase_31 AC 273 ms
133,756 KB
testcase_32 AC 64 ms
43,368 KB
testcase_33 AC 41 ms
39,140 KB
testcase_34 AC 527 ms
184,840 KB
testcase_35 AC 39 ms
36,960 KB
testcase_36 AC 43 ms
41,164 KB
testcase_37 AC 24 ms
35,016 KB
testcase_38 AC 73 ms
51,416 KB
testcase_39 AC 110 ms
67,948 KB
testcase_40 AC 110 ms
71,740 KB
testcase_41 AC 72 ms
51,268 KB
testcase_42 AC 126 ms
67,684 KB
testcase_43 AC 23 ms
33,104 KB
testcase_44 AC 55 ms
43,236 KB
testcase_45 AC 428 ms
184,840 KB
testcase_46 AC 50 ms
45,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 NOV 2024 11:27:19 PM):

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

ソースコード

diff #

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

(main)
0