結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-22 13:53:32 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 224 bytes |
| 記録 | |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 31,480 KB |
| 実行使用メモリ | 29,544 KB |
| 最終ジャッジ日時 | 2026-07-07 20:06:15 |
| 合計ジャッジ時間 | 1,417 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 WA * 6 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 JUL 2026 08:06:13 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.132
ソースコード
(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 "~%")
)
)