結果

問題 No.645 Count Permutation
ユーザー Common LispCommon Lisp
提出日時 2024-11-11 03:02:13
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-11-11 03:02:17
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
21,888 KB
testcase_01 AC 9 ms
21,888 KB
testcase_02 AC 12 ms
22,400 KB
testcase_03 AC 10 ms
21,888 KB
testcase_04 AC 9 ms
21,760 KB
testcase_05 AC 10 ms
21,760 KB
testcase_06 AC 9 ms
21,888 KB
testcase_07 AC 10 ms
21,760 KB
testcase_08 AC 9 ms
21,760 KB
testcase_09 AC 10 ms
22,272 KB
testcase_10 AC 10 ms
22,016 KB
testcase_11 AC 29 ms
26,624 KB
testcase_12 AC 23 ms
24,832 KB
testcase_13 AC 29 ms
26,496 KB
testcase_14 AC 13 ms
22,784 KB
testcase_15 AC 106 ms
44,800 KB
testcase_16 AC 96 ms
40,832 KB
testcase_17 AC 211 ms
69,760 KB
testcase_18 AC 75 ms
37,760 KB
testcase_19 AC 214 ms
71,936 KB
testcase_20 AC 216 ms
71,936 KB
testcase_21 AC 172 ms
61,312 KB
testcase_22 AC 9 ms
21,760 KB
testcase_23 AC 9 ms
21,760 KB
testcase_24 AC 240 ms
71,936 KB
testcase_25 AC 119 ms
48,384 KB
testcase_26 AC 186 ms
63,488 KB
testcase_27 AC 103 ms
44,288 KB
testcase_28 AC 73 ms
37,120 KB
testcase_29 AC 168 ms
59,904 KB
testcase_30 AC 172 ms
60,544 KB
testcase_31 AC 204 ms
64,128 KB
testcase_32 AC 61 ms
34,304 KB
testcase_33 AC 62 ms
34,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 11 NOV 2024 03:02:13 AM):

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

ソースコード

diff #

(defconstant +mod+ 1000000007)

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (l (read))
         (r (read))
         (dp (make-array (list 100001 64) :element-type 'integer))
         (m 1)
         (res 0))
    (setf (aref dp 0 0) 1)
    (loop for i from 1 below n do
          (setq m (mod (* m i) +mod+))
          (dotimes (j 64)
            (setf (aref dp i j) (mod (+ (* (aref dp (1- i) j) (1- i))
                                        (if (>= j 1)
                                            (aref dp (1- i) (1- j))
                                            0)) +mod+))))
    (dotimes (i 64)
      (when (and (<= l (ash 1 i)) (<= (ash 1 i) r))
            (setq res (mod (+ res (aref dp (1- n) i)) +mod+))))
    (when (zerop l)
          (setq res (mod (+ res (* m (1- n))) +mod+)))
    (format t "~d~%" res)))

(main)
0