結果

問題 No.672 最長AB列
ユーザー tails1434tails1434
提出日時 2020-01-22 21:52:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 86,480 KB
最終ジャッジ日時 2024-07-16 02:47:19
合計ジャッジ時間 2,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,736 KB
testcase_01 AC 35 ms
52,604 KB
testcase_02 AC 36 ms
53,244 KB
testcase_03 AC 36 ms
51,620 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 34 ms
52,404 KB
testcase_06 AC 34 ms
52,912 KB
testcase_07 AC 34 ms
53,772 KB
testcase_08 AC 35 ms
52,564 KB
testcase_09 AC 42 ms
65,948 KB
testcase_10 AC 43 ms
65,808 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 55 ms
79,304 KB
testcase_18 AC 60 ms
86,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def runlegth(S):
    cnt = 1
    d = []
    for i in range(len(S)-1):
        if S[i] == S[i+1]:
            cnt += 1
        else:
            d.append(cnt)
            cnt = 1
    d.append(cnt)
    return d
def main():
    S = input()
    D = runlegth(S)
    first = 0
    second = 0
    ans = 0
    for i in range(len(D)):
        if i % 2 == 0:
            first += D[i]
            ans = max(ans, min(first,second))
            if D[i] > second:
                second = 0
        else:
            second += D[i]
            ans = max(ans, min(first,second))
            if D[i] > first:
                first = 0

    print(ans * 2)


if __name__ == "__main__":
    main()
0