結果
問題 | No.22 括弧の対応 |
ユーザー | kaffelun |
提出日時 | 2017-10-05 19:25:08 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 1,567 ms |
コンパイル使用メモリ | 163,944 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 07:25:51 |
合計ジャッジ時間 | 1,822 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, K; cin >> N >> K; string S; cin >> S; int a[10000]; stack<int> s; for(int i = 0; i < S.length(); i++) { if(S[i] == '(') { s.push(i); } else { int x = s.top(); a[i] = x; a[x] = i; s.pop(); } } cout << (a[K - 1] + 1) << endl; return 0; }