結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-10-09 22:54:08 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 218 bytes |
| 記録 | |
| コンパイル時間 | 103 ms |
| コンパイル使用メモリ | 29,184 KB |
| 実行使用メモリ | 22,144 KB |
| 最終ジャッジ日時 | 2026-04-26 02:01:58 |
| 合計ジャッジ時間 | 2,402 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 26 APR 2026 02:01:54 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.036
ソースコード
; 入力された数を全て足し合わせて 55 から引いた数を出力する (defun main (&rest argv) (declare (ignorable argv)) (princ (- 55 (reduce #'+ (loop repeat 9 collect (read))))) (terpri)) (main)
Common Lisp