結果

問題 No.672 最長AB列
ユーザー H20H20
提出日時 2020-11-05 11:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 82,904 KB
最終ジャッジ日時 2024-07-22 10:55:08
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 50 ms
79,104 KB
testcase_10 AC 53 ms
78,720 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 65 ms
79,612 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
S = input()
G = groupby(S)
C = []
for key, group in G:
    C.append(len(list(group)))
ans = 0
for i in range(len(C)-1):
    ans = max(ans,min(C[i],C[i+1])*2)
print(ans)
0