結果

問題 No.1237 EXP Multiple!
ユーザー motoshiramotoshira
提出日時 2020-10-14 22:26:39
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 28,160 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-07-20 19:32:49
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
21,888 KB
testcase_01 AC 108 ms
24,192 KB
testcase_02 AC 144 ms
24,832 KB
testcase_03 AC 152 ms
25,088 KB
testcase_04 AC 162 ms
24,960 KB
testcase_05 AC 51 ms
25,088 KB
testcase_06 AC 53 ms
25,216 KB
testcase_07 AC 50 ms
24,960 KB
testcase_08 AC 57 ms
25,088 KB
testcase_09 AC 54 ms
25,088 KB
testcase_10 AC 50 ms
25,216 KB
testcase_11 AC 52 ms
24,960 KB
testcase_12 AC 53 ms
25,088 KB
testcase_13 AC 60 ms
25,088 KB
testcase_14 AC 60 ms
25,088 KB
testcase_15 AC 60 ms
25,216 KB
testcase_16 AC 60 ms
25,088 KB
testcase_17 AC 59 ms
24,960 KB
testcase_18 AC 58 ms
25,088 KB
testcase_19 AC 51 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 20 JUL 2024 07:32:46 PM):

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

ソースコード

diff #

(defparameter *mod* 1000000007)

(defun fact (x)
  (if (zerop x)
      1
      (* x (fact (1- x)))))

(defun main ()
  (let ((n (read)))
    (let ((a (loop repeat n collect (read))))
      (labels ((sub (xs &optional (res 1))
                 (cond
                   ((null xs) (mod *mod* res))
                   ((> res *mod*) *mod*)
                   (t
                    (sub (rest xs) (* (expt (first xs)
                                            (fact (first xs)))
                                      res))))))
        (princ (if (some #'zerop a)
                   -1
                   (if (every (lambda (x)
                                (<= 1 x 3))
                              a)
                       (sub a)
                       *mod*)))))))
(main)
0