結果

問題 No.2561 みんな大好きmod 998
ユーザー Common LispCommon Lisp
提出日時 2024-11-05 23:26:15
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 553 ms / 4,000 ms
コード長 577 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 33,768 KB
実行使用メモリ 190,916 KB
最終ジャッジ日時 2024-11-05 23:26:25
合計ジャッジ時間 8,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
29,988 KB
testcase_01 AC 29 ms
35,168 KB
testcase_02 AC 10 ms
28,236 KB
testcase_03 AC 553 ms
186,352 KB
testcase_04 AC 503 ms
184,972 KB
testcase_05 AC 502 ms
187,008 KB
testcase_06 AC 534 ms
188,884 KB
testcase_07 AC 10 ms
26,156 KB
testcase_08 AC 10 ms
28,112 KB
testcase_09 AC 12 ms
30,376 KB
testcase_10 AC 9 ms
26,024 KB
testcase_11 AC 74 ms
49,512 KB
testcase_12 AC 10 ms
26,028 KB
testcase_13 AC 10 ms
25,896 KB
testcase_14 AC 11 ms
26,024 KB
testcase_15 AC 537 ms
190,916 KB
testcase_16 AC 11 ms
26,024 KB
testcase_17 AC 10 ms
26,020 KB
testcase_18 AC 10 ms
26,148 KB
testcase_19 AC 401 ms
186,860 KB
testcase_20 AC 11 ms
26,148 KB
testcase_21 AC 10 ms
26,028 KB
testcase_22 AC 10 ms
26,156 KB
testcase_23 AC 10 ms
30,140 KB
testcase_24 AC 10 ms
26,024 KB
testcase_25 AC 11 ms
32,144 KB
testcase_26 AC 98 ms
57,572 KB
testcase_27 AC 540 ms
184,840 KB
testcase_28 AC 131 ms
67,688 KB
testcase_29 AC 44 ms
41,172 KB
testcase_30 AC 113 ms
67,820 KB
testcase_31 AC 272 ms
133,376 KB
testcase_32 AC 62 ms
43,364 KB
testcase_33 AC 44 ms
43,188 KB
testcase_34 AC 514 ms
184,844 KB
testcase_35 AC 41 ms
38,992 KB
testcase_36 AC 42 ms
41,136 KB
testcase_37 AC 24 ms
30,940 KB
testcase_38 AC 75 ms
49,376 KB
testcase_39 AC 114 ms
71,756 KB
testcase_40 AC 113 ms
69,720 KB
testcase_41 AC 75 ms
51,528 KB
testcase_42 AC 128 ms
67,692 KB
testcase_43 AC 24 ms
30,936 KB
testcase_44 AC 57 ms
47,288 KB
testcase_45 AC 429 ms
184,712 KB
testcase_46 AC 51 ms
39,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 NOV 2024 11:26:15 PM):

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

ソースコード

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