結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー KitataiKitatai
提出日時 2023-05-28 16:30:11
言語 Common Lisp
(sbcl 2.3.8)
結果
TLE  
実行時間 -
コード長 842 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-08 09:34:39
合計ジャッジ時間 6,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 JUN 2024 09:34:32 AM):

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

ソースコード

diff #

(defun facd (n p)
    (prog (pp count)
        (setq pp p)
        (setq count 0)
        loop
        (if (> pp n) (return count)
            (setq count (mod (+ count (/ (- n (mod n pp)) pp)) 1000000007))
        )
        (setq pp (* pp p))
        (go loop)
    )
)

(defun factorial (n)
    (prog (count)
        (setq count 1)
        loop
        (if (= n 1) (return count)
            (setq count (mod (* count n) 1000000007))
        )
        (setq n (- n 1))
        (go loop)
    )
)

(defun rui (n p)
    (prog (count)
        (setq count 1)
        loop
        (if (= p 0) (return count)
            (setq count (mod (* count n) 1000000007))
        )
        (setq p (- p 1))
        (go loop)
    )
)

(defun solve (n p)
    (mod (* (facd n p) (rui (factorial n) (factorial n))) 1000000007) 
)

(princ (solve (read) (read)))
0