結果

問題 No.22 括弧の対応
コンテスト
ユーザー Kenichi Higashide
提出日時 2016-07-07 09:35:06
言語 C++14
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 5,000 ms
+ 345µs
コード長 415 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 294 ms
コンパイル使用メモリ 73,176 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-19 17:19:00
合計ジャッジ時間 1,751 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <string>

using namespace std;

int main(int argc, char* argv[])
{
	int n, k;
	cin >> n >> k;
	cin.setf(ios_base::skipws);
	string s;
	cin >> s;
	int position = k;
	int direction = ((s[position - 1] == '(') ? 1 : -1);
	int depth = direction;
	do {
		position += direction;
		depth += ((s[position - 1] == '(') ? 1 : -1);
	} while (depth != 0);

	cout << position << endl;

	return 0;
}
0