結果
| 問題 |
No.2921 Seated in Classroom
|
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-10-17 22:04:59 |
| 言語 | Common Lisp (sbcl 2.5.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 34,720 KB |
| 実行使用メモリ | 39,228 KB |
| 最終ジャッジ日時 | 2024-10-17 22:05:05 |
| 合計ジャッジ時間 | 5,118 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 5 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 17 OCT 2024 10:05:00 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.004
ソースコード
(defun main ()
(let* ((query (read)))
(dotimes (_ query)
(let* ((n (read))
(m (read)))
(princ (max (/ (+ n 3) 4) (/ (+ n m 7) 8)))
(terpri)))))
(main)
Common Lisp