結果
問題 | No.445 得点 |
ユーザー |
![]() |
提出日時 | 2024-11-02 21:01:45 |
言語 | Common Lisp (sbcl 2.5.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 165 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 34,980 KB |
実行使用メモリ | 32,016 KB |
最終ジャッジ日時 | 2024-11-02 21:01:46 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 NOV 2024 09:01:45 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.007
ソースコード
(defun main (&rest argv) (declare (ignorable argv)) (let* ((a (read)) (b (read))) (format t "~d~%" (+ (* 50 a) (floor (* 250 a) (+ 4 b)))))) (main)