結果

問題 No.146 試験監督(1)
ユーザー Common LispCommon Lisp
提出日時 2024-11-09 16:04:59
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 287 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 26,752 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-11-09 16:05:02
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
28,288 KB
testcase_01 AC 276 ms
28,288 KB
testcase_02 AC 287 ms
28,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 09 NOV 2024 04:04:59 PM):

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

ソースコード

diff #

(defconstant +mod+ 1000000007)

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (res 0))
    (dotimes (_ n)
      (let* ((c (read))
             (d (read)))
        (incf res (mod (* (floor (1+ c) 2) d) +mod+))))
    (format t "~d~%" (mod res +mod+))))

(main)
0