結果

問題 No.2921 Seated in Classroom
ユーザー Common LispCommon Lisp
提出日時 2024-10-17 22:04:59
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 34,720 KB
実行使用メモリ 39,228 KB
最終ジャッジ日時 2024-10-17 22:05:05
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; 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

ソースコード

diff #

(defun main ()
  (let* ((query (read)))
    (dotimes (_ query)
      (let* ((n (read))
             (m (read)))
        (princ (max (/ (+ n 3) 4) (/ (+ n m 7) 8)))
        (terpri)))))
(main)
0