結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-22 13:58:12 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 5,000 ms |
| コード長 | 180 bytes |
| 記録 | |
| コンパイル時間 | 30 ms |
| コンパイル使用メモリ | 33,220 KB |
| 実行使用メモリ | 25,540 KB |
| 最終ジャッジ日時 | 2026-07-07 20:06:24 |
| 合計ジャッジ時間 | 1,056 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 JUL 2026 08:06:22 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.017
ソースコード
(defparameter N (parse-integer (read-line))) (if (eq (mod N 2) 0 ) (format 't "~d" 1) (format 't "~d" 7)) (loop for i from 2 to (floor N 2) do (format 't "~d" 1)) (format 't "~%")