結果
| 問題 | No.146 試験監督(1) |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-09 16:02:45 |
| 言語 | Common Lisp (sbcl 2.6.7) |
| 結果 |
AC
不安定
|
| 実行時間 | 113 ms / 1,000 ms |
| + 532µs | |
| コード長 | 375 bytes |
| 記録 | |
| コンパイル時間 | 307 ms |
| コンパイル使用メモリ | 38,380 KB |
| 実行使用メモリ | 32,920 KB |
| 最終ジャッジ日時 | 2026-09-21 16:05:21 |
| 合計ジャッジ時間 | 2,134 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 21 SEP 2026 04:05:18 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.073
ソースコード
(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