結果

問題 No.22 括弧の対応
ユーザー mbanmban
提出日時 2016-11-04 16:35:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 734 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 110,388 KB
実行使用メモリ 26,216 KB
最終ジャッジ日時 2024-07-20 07:17:55
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
23,796 KB
testcase_01 AC 32 ms
25,768 KB
testcase_02 AC 28 ms
23,668 KB
testcase_03 AC 28 ms
23,536 KB
testcase_04 AC 28 ms
23,796 KB
testcase_05 AC 30 ms
21,944 KB
testcase_06 AC 29 ms
23,924 KB
testcase_07 AC 28 ms
24,108 KB
testcase_08 AC 28 ms
23,648 KB
testcase_09 AC 28 ms
21,556 KB
testcase_10 AC 27 ms
23,796 KB
testcase_11 AC 27 ms
23,736 KB
testcase_12 AC 28 ms
22,072 KB
testcase_13 AC 30 ms
26,216 KB
testcase_14 AC 28 ms
23,844 KB
testcase_15 AC 30 ms
23,920 KB
testcase_16 AC 27 ms
23,672 KB
testcase_17 AC 26 ms
23,540 KB
testcase_18 AC 27 ms
23,792 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Magatro
{
    static void Main()
    {
        string[] s = Console.ReadLine().Split(' ');
        int N = int.Parse(s[0]);
        int K = int.Parse(s[1])-1;
        string SS = Console.ReadLine();
        List<int> L = new List<int>();
        int[] c = new int[N];
        for(int i = 0; i < N; i++)
        {
            if (SS[i] == '(')
            {
                L.Add(i);
            }
            else
            {
                c[L[L.Count-1]] = i;
                c[i] = L[L.Count - 1];
                L.RemoveAt(L.Count - 1);
            }
        }
        Console.WriteLine(c[K]+1);
    }
}
0