結果
問題 | No.893 お客様を誘導せよ |
ユーザー | ducktail |
提出日時 | 2019-10-10 14:14:42 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 371 ms / 2,000 ms |
コード長 | 612 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 49,660 KB |
最終ジャッジ日時 | 2024-11-21 07:58:02 |
合計ジャッジ時間 | 3,172 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
16,000 KB |
testcase_01 | AC | 26 ms
16,000 KB |
testcase_02 | AC | 74 ms
22,016 KB |
testcase_03 | AC | 223 ms
33,536 KB |
testcase_04 | AC | 219 ms
33,408 KB |
testcase_05 | AC | 193 ms
33,280 KB |
testcase_06 | AC | 138 ms
27,904 KB |
testcase_07 | AC | 27 ms
15,872 KB |
testcase_08 | AC | 371 ms
49,660 KB |
testcase_09 | AC | 28 ms
17,024 KB |
testcase_10 | AC | 27 ms
16,128 KB |
testcase_11 | AC | 27 ms
16,384 KB |
testcase_12 | AC | 37 ms
17,152 KB |
ソースコード
(define (read-list n) (cond [(zero? n) '()] [else (let1 x (read) (cons x (read-list (- n 1))))])) (define (read-list-list n) (cond [(zero? n) '()] [else (let1 m (read) (cons (read-list m) (read-list-list (- n 1))))])) (define (solve lx) (let loop ([lx lx]) (let1 ly (filter (^x (not (null? x))) lx) (cond [(null? ly) '()] [else (append (map car ly) (loop (map cdr ly)))])))) (define (main args) (let* ([n (read)] [ls (read-list-list n)]) (print (string-join (map number->string (solve ls)) " "))) 0)