結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-22 13:53:32 |
| 言語 | Common Lisp (sbcl 2.5.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 224 bytes |
| コンパイル時間 | 1,871 ms |
| コンパイル使用メモリ | 28,456 KB |
| 実行使用メモリ | 25,668 KB |
| 最終ジャッジ日時 | 2025-03-22 13:53:35 |
| 合計ジャッジ時間 | 2,027 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 WA * 6 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 22 MAR 2025 01:53:32 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.046
ソースコード
(defparameter N (parse-integer (read-line)))
(case N
(2 (format 't "~d~%" 1))
(3 (format 't "~d~%" 7))
(otherwise
(loop for i from 1 to (floor N 2) do (format 't "~d" 1))
(format 't "~%")
)
)