結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | Lisp_Coder |
提出日時 | 2024-04-30 03:06:15 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
TLE
|
実行時間 | - |
コード長 | 591 bytes |
コンパイル時間 | 1,201 ms |
コンパイル使用メモリ | 33,096 KB |
実行使用メモリ | 59,076 KB |
最終ジャッジ日時 | 2024-11-19 14:57:15 |
合計ジャッジ時間 | 32,071 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
34,932 KB |
testcase_01 | AC | 527 ms
39,096 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 520 ms
59,076 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 19 NOV 2024 02:56:44 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.028
ソースコード
(defparameter modint 998244353) (defun modpow (a n) (cond ((= n 0) 1) ((evenp n) (mod (expt (mod (* a a) modint) (/ n 2)) modint)) (t (mod (* a (modpow a (- n 1))) modint)))) (defun solve (n m) (setf n (mod n (* 2 m))) (if (<= n m) (format t "~d~%" (mod (1- (modpow 10 n)) modint)) (let* ((a (modpow 10 m)) (b (modpow 10 (- n m))) (ans (mod (- a b) modint))) (format t "~d~%" ans)))) (defun main () (let ((num-tests (read))) (dotimes (i num-tests) (let* ((n (read)) (m (read))) (solve n m))))) (main)