結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
kokoa1046
|
| 提出日時 | 2017-09-04 11:45:46 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 5,000 ms |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 8,100 KB |
| 実行使用メモリ | 16,384 KB |
| 最終ジャッジ日時 | 2026-05-07 02:39:13 |
| 合計ジャッジ時間 | 1,575 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
(define n (read)) (if (even? n) (print (make-string (/ n 2) #\1)) (print(string-append "7" (make-string (- (quotient n 2) 1) #\1) ) ))
kokoa1046