結果

問題 No.2561 みんな大好きmod 998
ユーザー Common LispCommon Lisp
提出日時 2024-11-05 22:26:13
言語 Common Lisp
(sbcl 2.3.8)
結果
MLE  
実行時間 -
コード長 639 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 33,396 KB
実行使用メモリ 651,628 KB
最終ジャッジ日時 2024-11-05 22:26:43
合計ジャッジ時間 29,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,024 KB
testcase_01 AC 60 ms
76,144 KB
testcase_02 AC 11 ms
30,140 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 11 ms
26,148 KB
testcase_08 AC 11 ms
30,140 KB
testcase_09 AC 14 ms
28,768 KB
testcase_10 AC 11 ms
32,144 KB
testcase_11 AC 220 ms
166,224 KB
testcase_12 AC 11 ms
30,116 KB
testcase_13 AC 12 ms
30,116 KB
testcase_14 AC 11 ms
30,012 KB
testcase_15 MLE -
testcase_16 AC 12 ms
26,148 KB
testcase_17 AC 10 ms
26,024 KB
testcase_18 AC 11 ms
26,152 KB
testcase_19 AC 1,552 ms
450,856 KB
testcase_20 AC 10 ms
26,280 KB
testcase_21 AC 10 ms
28,108 KB
testcase_22 AC 11 ms
28,108 KB
testcase_23 AC 9 ms
26,148 KB
testcase_24 AC 10 ms
25,896 KB
testcase_25 AC 11 ms
26,020 KB
testcase_26 AC 285 ms
168,456 KB
testcase_27 MLE -
testcase_28 AC 471 ms
237,812 KB
testcase_29 AC 102 ms
100,848 KB
testcase_30 AC 452 ms
227,480 KB
testcase_31 AC 1,080 ms
389,408 KB
testcase_32 AC 144 ms
123,380 KB
testcase_33 AC 101 ms
100,852 KB
testcase_34 MLE -
testcase_35 AC 91 ms
100,592 KB
testcase_36 AC 93 ms
105,048 KB
testcase_37 AC 40 ms
57,572 KB
testcase_38 AC 218 ms
164,084 KB
testcase_39 AC 448 ms
227,604 KB
testcase_40 AC 450 ms
229,636 KB
testcase_41 AC 218 ms
162,180 KB
testcase_42 AC 476 ms
237,940 KB
testcase_43 AC 39 ms
57,700 KB
testcase_44 AC 146 ms
121,084 KB
testcase_45 AC 1,577 ms
452,628 KB
testcase_46 AC 104 ms
100,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 NOV 2024 10:26:13 PM):

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

ソースコード

diff #

(defun combinations (lst k)
  (if (= k 0)
      (list '())
      (when lst
        (let ((first (car lst))
              (rest (cdr lst)))
          (append (mapcar (lambda (x) (cons first x))
                          (combinations rest (1- k)))
                  (combinations rest k))))))

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (k (read))
         (a (loop repeat n collect (read)))
         (res 0))
    (dolist (b (combinations a k))
      (let ((s (reduce #'+ b)))
        (when (<= (mod s 998244353) (mod s 998))
              (incf res))))
    (format t "~d~%" (mod res 998))))

(main)
0