結果

問題 No.672 最長AB列
ユーザー bluemeganebluemegane
提出日時 2018-09-06 20:40:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 109,608 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-11-24 02:34:26
合計ジャッジ時間 3,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 23 ms
17,408 KB
testcase_02 AC 23 ms
17,664 KB
testcase_03 AC 23 ms
17,920 KB
testcase_04 AC 23 ms
17,664 KB
testcase_05 AC 24 ms
17,536 KB
testcase_06 AC 24 ms
17,792 KB
testcase_07 AC 24 ms
17,408 KB
testcase_08 AC 24 ms
17,664 KB
testcase_09 AC 44 ms
29,312 KB
testcase_10 AC 41 ms
24,192 KB
testcase_11 AC 40 ms
24,064 KB
testcase_12 AC 36 ms
19,584 KB
testcase_13 AC 37 ms
19,328 KB
testcase_14 AC 36 ms
19,200 KB
testcase_15 AC 37 ms
19,328 KB
testcase_16 AC 37 ms
19,328 KB
testcase_17 AC 40 ms
24,320 KB
testcase_18 AC 36 ms
19,200 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