結果

問題 No.672 最長AB列
ユーザー AreTrashAreTrash
提出日時 2018-05-04 17:51:02
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 103,552 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-06-28 01:13:01
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,792 KB
testcase_01 AC 23 ms
17,792 KB
testcase_02 AC 23 ms
17,408 KB
testcase_03 AC 24 ms
17,792 KB
testcase_04 WA -
testcase_05 AC 23 ms
17,792 KB
testcase_06 AC 23 ms
17,664 KB
testcase_07 AC 24 ms
17,536 KB
testcase_08 AC 23 ms
17,280 KB
testcase_09 AC 42 ms
27,648 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 31 ms
17,496 KB
testcase_14 WA -
testcase_15 AC 33 ms
17,664 KB
testcase_16 AC 32 ms
17,664 KB
testcase_17 AC 38 ms
22,656 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No672
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var S = Console.ReadLine();
            var dic = new Dictionary<int, int>();

            var count = 0;
            var ans = 0;
            for (var i = 0; i < S.Length; i++)
            {
                count += (S[i] - 'A') * 2 - 1;
                if (dic.TryGetValue(count, out var dist)) ans = Math.Max(ans, i - dist);
                else dic.Add(count, i);
            }

            Console.WriteLine(ans);
        }
    }
}
0