結果

問題 No.22 括弧の対応
ユーザー NoNo
提出日時 2015-11-05 23:09:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 925 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 100,344 KB
実行使用メモリ 22,876 KB
最終ジャッジ日時 2023-09-27 12:58:16
合計ジャッジ時間 3,616 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
20,596 KB
testcase_01 AC 50 ms
20,672 KB
testcase_02 AC 50 ms
20,660 KB
testcase_03 AC 52 ms
22,876 KB
testcase_04 AC 51 ms
20,708 KB
testcase_05 AC 52 ms
20,660 KB
testcase_06 AC 52 ms
18,784 KB
testcase_07 AC 52 ms
20,692 KB
testcase_08 AC 53 ms
20,600 KB
testcase_09 AC 51 ms
22,820 KB
testcase_10 AC 52 ms
20,872 KB
testcase_11 AC 51 ms
22,808 KB
testcase_12 AC 51 ms
18,604 KB
testcase_13 AC 52 ms
20,700 KB
testcase_14 AC 51 ms
22,784 KB
testcase_15 AC 52 ms
20,772 KB
testcase_16 AC 51 ms
20,628 KB
testcase_17 AC 50 ms
20,752 KB
testcase_18 AC 50 ms
20,848 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;

namespace Yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] a = Console.ReadLine().Split();
            int n = int.Parse(a[0]);
            int k = int.Parse(a[1]);
            string s = Console.ReadLine();

            bool mode;
            int cnt = 0;
            int i = k - 1;

            mode = s[k - 1].Equals('(') ? true : false;

            while (i >= 0 && i < n)
            {
                if (s[i].Equals(s[k - 1])) cnt++;
                else cnt--;

                if (cnt == 0)
                {
                    break;
                }
                else
                {
                    if (mode) i++;
                    else i--;
                }
            }
            Console.WriteLine(i + 1);
        }
    }
}
0