結果
| 問題 | No.374 コイン |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-11-07 19:59:19 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 1,000 ms |
| コード長 | 147 bytes |
| 記録 | |
| コンパイル時間 | 656 ms |
| コンパイル使用メモリ | 38,032 KB |
| 実行使用メモリ | 28,252 KB |
| 最終ジャッジ日時 | 2026-05-08 03:23:43 |
| 合計ジャッジ時間 | 2,851 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 MAY 2026 03:23:40 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.096
ソースコード
(defun main (&rest argv)
(declare (ignorable argv))
(let* ((a (read))
(b (read)))
(format t "~c~%" (if (< a b) #\K #\S))))
(main)
Common Lisp