結果
問題 | No.22 括弧の対応 |
ユーザー | PoronPa |
提出日時 | 2019-04-25 21:53:04 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 1,857 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 107,904 KB |
実行使用メモリ | 43,220 KB |
最終ジャッジ日時 | 2024-07-20 07:42:19 |
合計ジャッジ時間 | 3,578 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
19,840 KB |
testcase_01 | AC | 33 ms
19,840 KB |
testcase_02 | AC | 34 ms
19,584 KB |
testcase_03 | AC | 247 ms
40,860 KB |
testcase_04 | AC | 70 ms
42,496 KB |
testcase_05 | AC | 60 ms
39,680 KB |
testcase_06 | AC | 121 ms
39,656 KB |
testcase_07 | AC | 163 ms
43,220 KB |
testcase_08 | AC | 92 ms
41,536 KB |
testcase_09 | AC | 77 ms
39,296 KB |
testcase_10 | AC | 143 ms
43,020 KB |
testcase_11 | AC | 58 ms
37,120 KB |
testcase_12 | AC | 92 ms
39,992 KB |
testcase_13 | AC | 149 ms
42,016 KB |
testcase_14 | AC | 34 ms
22,912 KB |
testcase_15 | AC | 204 ms
39,688 KB |
testcase_16 | AC | 198 ms
41,084 KB |
testcase_17 | AC | 29 ms
19,840 KB |
testcase_18 | AC | 29 ms
19,840 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); string text= Console.ReadLine(); Palen Ans = new Palen(int.Parse(str[0]), text); Ans.calc(); Console.WriteLine(Ans.Ans(int.Parse(str[1])).ToString()); Console.ReadLine(); } class Palen { string Str = String.Empty; int[,] AnsPair; int PairCount=0; int[] StrIndex; public Palen(int StrLength,string ininput) { Str = ininput; AnsPair = new int[2,StrLength / 2]; StrIndex = new int[StrLength]; StrIndex = StrIndex.Select((x, index) => x = index+1).ToArray(); } public void calc() { while (Str!="") { int IndexPair = Str.IndexOf("()"); AnsPair[0, PairCount] = StrIndex[IndexPair]; AnsPair[1, PairCount] = StrIndex[IndexPair + 1]; Str = Str.Substring(0, IndexPair) + Str.Substring(IndexPair + 2);//Str.Length-1 int[] NewStrIndex = new int[StrIndex.Length - 2]; for (int Loop1 = 0; Loop1 < NewStrIndex.Length; Loop1++) { NewStrIndex[Loop1] = Loop1 < IndexPair ? StrIndex[Loop1] : StrIndex[Loop1 + 2]; } StrIndex = NewStrIndex; PairCount++; } } public int Ans(int inIndex) { for (int Loop1 = 0; Loop1 < AnsPair.GetLength(1); Loop1++) { if (inIndex == AnsPair[0,Loop1]) { return AnsPair[1, Loop1]; } if (inIndex == AnsPair[1, Loop1]) { return AnsPair[0, Loop1]; } } return -1; } } }