結果

問題 No.672 最長AB列
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-11-27 21:35:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 111,928 KB
実行使用メモリ 36,292 KB
最終ジャッジ日時 2024-07-26 11:51:37
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,548 KB
testcase_01 AC 23 ms
23,932 KB
testcase_02 AC 23 ms
23,672 KB
testcase_03 AC 24 ms
25,664 KB
testcase_04 AC 24 ms
25,800 KB
testcase_05 AC 23 ms
23,548 KB
testcase_06 AC 22 ms
23,984 KB
testcase_07 AC 24 ms
21,556 KB
testcase_08 AC 23 ms
24,108 KB
testcase_09 AC 40 ms
36,292 KB
testcase_10 AC 37 ms
26,932 KB
testcase_11 AC 37 ms
31,716 KB
testcase_12 AC 32 ms
23,688 KB
testcase_13 AC 32 ms
23,812 KB
testcase_14 AC 33 ms
23,516 KB
testcase_15 AC 31 ms
25,724 KB
testcase_16 AC 31 ms
23,724 KB
testcase_17 AC 36 ms
30,840 KB
testcase_18 AC 32 ms
23,632 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.ComponentModel;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            String s = Console.ReadLine();
            Int32 n = s.Length;
            var mp = new Dictionary<Int32,Int32>();
            Int32 p = 0;
            mp[0] = -1;
            Int32 ans = 0;
            for (Int32 i = 0; i < n; i++)
            {
                if (s[i] == 'A') p++;
                else p--;
                if (mp.ContainsKey(p)) ans = Math.Max(ans, i - mp[p]);
                else mp[p] = i;
            }
            Console.WriteLine(ans);
        }
    }
}
0