結果
| 問題 | No.146 試験監督(1) |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-09 16:02:45 |
| 言語 | Common Lisp (sbcl 2.5.0) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 |
コンパイルメッセージ
; 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
ソースコード
(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)
Common Lisp