結果

問題 No.146 試験監督(1)
ユーザー Common LispCommon Lisp
提出日時 2024-11-09 16:02:45
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 300 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 32,960 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-11-09 16:02:49
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

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

ソースコード

diff #

(defconstant +mod+ 1000000007)

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

(main)
0