結果
問題 |
No.22 括弧の対応
|
ユーザー |
![]() |
提出日時 | 2019-11-08 15:24:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 367 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-20 07:45:33 |
合計ジャッジ時間 | 1,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
N, K = map(int, input().split()) S = input() x = 1 i = 1 if S[K-1] == ')': while x != 0: if S[K-1-i] == ')': x += 1 else: x -= 1 i += 1 print(K - i + 1) else: while x != 0: if S[K-1+i] == '(': x += 1 else: x -= 1 i += 1 print(K + i - 1)