結果

問題 No.22 括弧の対応
ユーザー MiyamonYMiyamonY
提出日時 2019-09-05 00:12:45
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 515 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-20 07:44:31
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,128 KB
testcase_01 AC 31 ms
16,128 KB
testcase_02 AC 26 ms
16,000 KB
testcase_03 AC 26 ms
16,384 KB
testcase_04 AC 27 ms
16,256 KB
testcase_05 AC 26 ms
16,128 KB
testcase_06 AC 27 ms
16,384 KB
testcase_07 AC 27 ms
16,256 KB
testcase_08 AC 27 ms
16,256 KB
testcase_09 AC 27 ms
16,256 KB
testcase_10 AC 27 ms
16,384 KB
testcase_11 AC 27 ms
16,256 KB
testcase_12 AC 27 ms
16,384 KB
testcase_13 AC 28 ms
16,512 KB
testcase_14 AC 27 ms
16,128 KB
testcase_15 AC 27 ms
16,384 KB
testcase_16 AC 28 ms
16,384 KB
testcase_17 AC 26 ms
16,000 KB
testcase_18 AC 26 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use data.queue)

(let* ((pair (map string->number (string-split (read-line) #\space)))
       (k (cadr pair))
       (s (read-line)))

  (print
   (let loop ((chars (string->list s))
	      (i 1)
	      (stack (make-queue)))
     (cond
      ((eqv? (car chars) #\()
       (queue-push! stack i)
       (loop (cdr chars) (+ i 1) stack))
      ((eqv? (car chars) #\))
       (let1 popped (queue-pop! stack)
	     (cond ((= popped k) i)
		   ((= i k) popped)
		   (else
		    (loop (cdr chars) (+ i 1) stack)))))))))
0