結果

問題 No.22 括弧の対応
ユーザー akichiakichi
提出日時 2017-08-18 23:41:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 109,268 KB
実行使用メモリ 27,416 KB
最終ジャッジ日時 2024-07-20 07:25:23
合計ジャッジ時間 2,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,088 KB
testcase_01 AC 31 ms
25,116 KB
testcase_02 AC 31 ms
26,872 KB
testcase_03 AC 29 ms
24,756 KB
testcase_04 AC 30 ms
27,416 KB
testcase_05 AC 30 ms
25,140 KB
testcase_06 AC 29 ms
26,900 KB
testcase_07 AC 29 ms
24,992 KB
testcase_08 AC 30 ms
27,028 KB
testcase_09 AC 30 ms
25,112 KB
testcase_10 AC 29 ms
25,112 KB
testcase_11 AC 30 ms
27,000 KB
testcase_12 AC 30 ms
24,752 KB
testcase_13 AC 32 ms
25,008 KB
testcase_14 AC 29 ms
25,080 KB
testcase_15 AC 30 ms
23,088 KB
testcase_16 AC 30 ms
24,864 KB
testcase_17 AC 31 ms
25,112 KB
testcase_18 AC 31 ms
25,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
class Program {
    static void Main() {
        int ans;
        int[] nk = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int n = nk[0];
        int k = nk[1];
        string s = Console.ReadLine();
        int p = k - 1;
        int dir = s[p] == '(' ? 1 : -1;
        int level = dir;
        
        for (p += dir; ; p += dir) {
            if (s[p] == '(') level++;
            else level--;
            if (level == 0) {
                ans = p + 1;
                break;
            }
        }
        Console.WriteLine(ans);
    }
}
0