結果

問題 No.672 最長AB列
ユーザー bluemeganebluemegane
提出日時 2018-09-06 20:40:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 111,736 KB
実行使用メモリ 34,184 KB
最終ジャッジ日時 2024-05-03 05:18:11
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,064 KB
testcase_01 AC 23 ms
23,744 KB
testcase_02 AC 25 ms
21,556 KB
testcase_03 AC 23 ms
25,916 KB
testcase_04 AC 23 ms
25,536 KB
testcase_05 AC 22 ms
23,684 KB
testcase_06 AC 21 ms
23,852 KB
testcase_07 AC 22 ms
23,816 KB
testcase_08 AC 24 ms
23,936 KB
testcase_09 AC 41 ms
34,184 KB
testcase_10 AC 38 ms
30,468 KB
testcase_11 AC 40 ms
29,212 KB
testcase_12 AC 36 ms
25,344 KB
testcase_13 AC 36 ms
25,464 KB
testcase_14 AC 38 ms
25,348 KB
testcase_15 AC 36 ms
25,216 KB
testcase_16 AC 34 ms
25,476 KB
testcase_17 AC 38 ms
30,220 KB
testcase_18 AC 35 ms
25,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    public static void Main()
    {
        var s = Console.ReadLine().Trim();
        var sL = s.Length;
        var a = new int[sL];
        for (int i = 0; i < sL; i++)
            a[i] = s[i] == 'A' ? 1 : -1;
        var d = new Dictionary<int, int>();
        var ans = 0;
        d[0] = 0;
        var b = new int[sL + 1];
        for (int i = 1; i <= sL; i++)
        {
            b[i] += b[i - 1] + a[i - 1];
            if (d.ContainsKey(b[i]))
                ans = Math.Max(ans, i - d[b[i]]);
            else d[b[i]] = i;
        }
        Console.WriteLine(ans);
    }
}
0