結果

問題 No.22 括弧の対応
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-07-24 09:11:57
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 675 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 9,915 ms
コンパイル使用メモリ 171,008 KB
実行使用メモリ 182,024 KB
最終ジャッジ日時 2024-09-25 11:44:50
合計ジャッジ時間 14,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,568 KB
testcase_01 AC 51 ms
29,440 KB
testcase_02 AC 50 ms
29,308 KB
testcase_03 AC 675 ms
31,104 KB
testcase_04 AC 182 ms
30,756 KB
testcase_05 AC 220 ms
30,720 KB
testcase_06 AC 151 ms
30,976 KB
testcase_07 AC 121 ms
30,844 KB
testcase_08 AC 286 ms
31,104 KB
testcase_09 AC 179 ms
30,720 KB
testcase_10 AC 168 ms
30,976 KB
testcase_11 AC 85 ms
30,464 KB
testcase_12 AC 107 ms
30,848 KB
testcase_13 AC 331 ms
31,104 KB
testcase_14 AC 79 ms
30,720 KB
testcase_15 AC 131 ms
30,976 KB
testcase_16 AC 620 ms
31,360 KB
testcase_17 AC 52 ms
29,420 KB
testcase_18 AC 52 ms
182,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
public class Program{
    public static void Main(){
        var line = Console.ReadLine().Split(' ');
        var N = int.Parse(line[0]);
        var k = int.Parse(line[1])-1;
        var s = Console.ReadLine();
        var n = new int[N];
        var j = 1;
        while(n.Any(value => value==0)){
            for(var i=0;i<N-j;i++){
                if(n[i]==0 && s[i]=='(' && n[i+j]==0 && s[i+j]==')'){
                    n[i] = i+j+1;
                    n[i+j] = i+1;
                }
            }
            j++;
        }
        Console.WriteLine(n[k]);
    }
}
0