結果

問題 No.22 括弧の対応
ユーザー 826814741_6826814741_6
提出日時 2018-12-30 17:48:55
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 8 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 5,216 KB
実行使用メモリ 6,304 KB
最終ジャッジ日時 2023-09-27 13:32:35
合計ジャッジ時間 1,095 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,380 KB
testcase_01 AC 4 ms
4,376 KB
testcase_02 AC 4 ms
4,376 KB
testcase_03 AC 8 ms
6,304 KB
testcase_04 AC 6 ms
5,072 KB
testcase_05 AC 6 ms
4,732 KB
testcase_06 AC 6 ms
5,400 KB
testcase_07 AC 6 ms
5,736 KB
testcase_08 AC 6 ms
5,080 KB
testcase_09 AC 6 ms
5,020 KB
testcase_10 AC 7 ms
5,664 KB
testcase_11 AC 5 ms
4,680 KB
testcase_12 AC 6 ms
5,056 KB
testcase_13 AC 7 ms
5,668 KB
testcase_14 AC 4 ms
4,376 KB
testcase_15 AC 7 ms
6,060 KB
testcase_16 AC 7 ms
6,056 KB
testcase_17 AC 4 ms
4,380 KB
testcase_18 AC 3 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

_==0 "exec" "gawk" "-f" "$0"
NR==1{ n=$1;k=$2;FS="" }
NR==2{
	for(i=1;i<=NF;i++)a[i]=$i;t=0
	if(a[k]=="("){for(i=k;i<=n;i++){t=a[i]=="("?t+1:t-1;if(t==0){r=i;break}}}
	else{for(i=k;i>=1;i--){t=a[i]!="("?t+1:t-1;if(t==0){r=i;break}}}
}
END{ print r }
0