結果

問題 No.592 括弧の対応 (2)
ユーザー ducktailducktail
提出日時 2017-12-31 19:52:38
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 29,684 KB
最終ジャッジ日時 2024-06-01 10:09:11
合計ジャッジ時間 1,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,640 KB
testcase_01 AC 277 ms
29,568 KB
testcase_02 AC 267 ms
29,684 KB
testcase_03 AC 268 ms
29,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (main args)
  (let* ([n (string->number (read-line))]
         [pl (string->list (read-line))]
         [rv (make-vector (+ n 1) 0)])
    (let loop ([st '()]
               [pl pl]
               [i 1])
      (cond [(null? pl) #t]
            [(char=? (car pl) #\() (loop (cons i st) (cdr pl) (+ i 1))]
            [else (vector-set! rv (car st) i)
                  (vector-set! rv i (car st))
                  (loop (cdr st) (cdr pl) (+ i 1))]))
    (vector-for-each-with-index (lambda (i x) (if (> i 0) (print x))) rv))
  0)
0