結果

問題 No.22 括弧の対応
ユーザー wowilsonwowilson
提出日時 2016-10-08 02:44:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,412 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 107,648 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-07-20 07:17:04
合計ジャッジ時間 2,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,816 KB
testcase_01 AC 29 ms
19,072 KB
testcase_02 AC 28 ms
18,944 KB
testcase_03 AC 57 ms
18,912 KB
testcase_04 AC 35 ms
19,072 KB
testcase_05 AC 33 ms
19,072 KB
testcase_06 AC 63 ms
18,944 KB
testcase_07 AC 35 ms
19,072 KB
testcase_08 AC 30 ms
18,944 KB
testcase_09 AC 60 ms
19,072 KB
testcase_10 AC 32 ms
19,072 KB
testcase_11 AC 34 ms
19,200 KB
testcase_12 AC 50 ms
19,072 KB
testcase_13 AC 125 ms
19,072 KB
testcase_14 AC 30 ms
18,944 KB
testcase_15 AC 49 ms
19,012 KB
testcase_16 AC 65 ms
19,140 KB
testcase_17 AC 29 ms
18,816 KB
testcase_18 AC 29 ms
18,944 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;

namespace Yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            var line = Console.ReadLine().Split(' ');

            int N = int.Parse(line[0]);
            int K = int.Parse(line[1]) - 1;

            List<int> list = new List<int>();
            var kakko = Console.ReadLine()
                .Select(
                x => x == '(' ? 0 : 1
                );

            list.AddRange(kakko);
            while (true)
            {
                int lastKakko = 0;
                for (int i = 0; i < N; i++)
                {
                    if(list[i] == 0)
                    {
                        lastKakko = i;
                        continue;
                    }

                    if(list[i] == 1)
                    {
                        list[lastKakko] = -1;
                        list[i] = -1;

                        if(lastKakko == K)
                        {
                            Console.WriteLine(i + 1);
                            return;
                        }else if(i == K)
                        {
                            Console.WriteLine(lastKakko + 1);
                            return;
                        }
                        break;
                    }
                }
            }
            
        }

    }
}
0