結果

問題 No.672 最長AB列
ユーザー prd_xxxprd_xxx
提出日時 2018-04-14 00:04:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 444 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 265,040 KB
最終ジャッジ日時 2024-06-27 19:59:12
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 55 ms
75,392 KB
testcase_10 AC 58 ms
80,768 KB
testcase_11 AC 62 ms
85,504 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
mem = [0]
a = b = 0
for c in S:
    if c == 'A':
        mem.append(mem[-1] + 1)
        a += 1
    else:
        mem.append(mem[-1] - 1)
        b += 1

def judge(n):
    for a,b in zip(mem, mem[n*2:]):
        if a == b:
            return True
    for a,b in zip(mem[1:], mem[n*2+1:]):
        if a == b:
            return True
    return False

for n in range(min(a,b),-1,-1):
    if judge(n):
        print(n*2)
        exit()
0