結果
問題 | No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど??? |
ユーザー | Common Lisp |
提出日時 | 2024-10-19 13:31:59 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 798 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 39,156 KB |
実行使用メモリ | 100,504 KB |
最終ジャッジ日時 | 2024-10-19 13:32:03 |
合計ジャッジ時間 | 1,622 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
25,640 KB |
testcase_01 | AC | 9 ms
29,988 KB |
testcase_02 | AC | 15 ms
43,052 KB |
testcase_03 | AC | 10 ms
27,724 KB |
testcase_04 | AC | 9 ms
27,852 KB |
testcase_05 | AC | 9 ms
26,028 KB |
testcase_06 | AC | 11 ms
32,548 KB |
testcase_07 | AC | 13 ms
32,820 KB |
testcase_08 | AC | 27 ms
67,344 KB |
testcase_09 | AC | 29 ms
77,764 KB |
testcase_10 | AC | 51 ms
100,504 KB |
testcase_11 | AC | 10 ms
29,860 KB |
testcase_12 | AC | 14 ms
32,820 KB |
testcase_13 | AC | 15 ms
40,888 KB |
testcase_14 | AC | 39 ms
94,524 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 19 OCT 2024 01:31:59 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.009
ソースコード
(defconstant +mod998+ 998244353) (defconstant +mod107+ 1000000007) (defun mod-exp (a n m) (let ((result 1) (base (mod a m))) (loop while (> n 0) do (when (oddp n) (setf result (mod (* result base) m))) (setf base (mod (* base base) m)) (setf n (floor n 2))) result)) (defun main (&rest argv) (declare (ignorable argv)) (let* ((h (read)) (w (read)) (m (read)) (a 1) (b 1)) (loop for i below (1- (+ h w)) do (setq a (* a (- m i))) (setq b (* b (1+ i)))) (loop for i below (1- h) do (setq a (* a (- (+ h w) i 2))) (setq b (* b (1+ i)))) (princ (mod (* (floor a b) (mod-exp m (* (1- h) (1- w)) +mod998+)) +mod998+)) (terpri))) (main)