結果

問題 No.22 括弧の対応
ユーザー mencotton
提出日時 2018-02-19 22:04:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 700 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 105,088 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-07-20 07:29:41
合計ジャッジ時間 1,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 _22
{
    class Program
    {
        static void Main(string[] args)
        {
            Stack<int> stack = new Stack<int>();
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            string s = Console.ReadLine();
            for (int i = 1; i <= x[0]; i++)
            {
                if (s[i - 1] == '(') stack.Push(i);
                else
                {
                    if (i == x[1]) Console.WriteLine(stack.Peek());
                    else if (stack.Peek() == x[1]) Console.WriteLine(i);
                    stack.Pop();
                }
            }
        }
    }
}
0