結果

問題 No.22 括弧の対応
ユーザー TrimozGitTrimozGit
提出日時 2017-09-05 17:23:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 855 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-07-20 07:25:35
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,072 KB
testcase_01 AC 33 ms
19,072 KB
testcase_02 AC 34 ms
19,072 KB
testcase_03 AC 43 ms
18,936 KB
testcase_04 AC 33 ms
18,944 KB
testcase_05 AC 33 ms
19,072 KB
testcase_06 AC 33 ms
18,944 KB
testcase_07 AC 32 ms
19,060 KB
testcase_08 AC 30 ms
18,816 KB
testcase_09 AC 29 ms
18,816 KB
testcase_10 AC 29 ms
19,068 KB
testcase_11 AC 34 ms
18,816 KB
testcase_12 AC 32 ms
19,072 KB
testcase_13 AC 34 ms
18,808 KB
testcase_14 AC 34 ms
19,072 KB
testcase_15 AC 34 ms
18,812 KB
testcase_16 AC 32 ms
19,052 KB
testcase_17 AC 29 ms
19,072 KB
testcase_18 AC 31 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;
using System.Text;
using System.Threading.Tasks;

namespace yukicorder22
{
	class Program
	{
		static void Main(string[] args)
		{
			int[] N = Console.ReadLine().Split(' ').Select(n => int.Parse(n)).ToArray();
			char[] line = Console.ReadLine().ToCharArray();
			int[] table = new int[N[0]];

			int cnt = 1;
			for (var i = 0; i < N[0]; i++)
			{
				var kakko = 1;
				var j = i + 1;
				while (table[i] == 0 &&  kakko != 0 && i < N[0] - 1)
				{
					if (line[j] == ')') kakko--;
					if (line[j] == '(') kakko++;
					if(kakko == 0)
					{
						table[i] = j + 1;
						table[j] = i + 1;
						cnt++;
						break;
					} else
					{
						j++;
					}
				}
			}
			//			Console.WriteLine(string.Join(" ",table));
			Console.WriteLine(table[N[1] -1]);
			Console.ReadKey();
		}
	}
}
0