結果

問題 No.672 最長AB列
ユーザー kaimankaiman
提出日時 2019-01-26 17:10:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 406 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-09-16 07:29:18
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,564 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,240 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

first = input()
x = first[0]
num = [0]
ans = 0
n = 0

for i in range(len(first)):
    if first[i] == x:
        s=1
    else:
        s=-1
    n += 1*s
    num.append(n)
n_min = min(num)
n_max = max(num)
for i in range(n_min, n_max):
    le=0
    while num[le] != num[i]:
        le +=1
    ri=len(num)-1
    while num[ri] != num[i]:
        ri -=1
    a = ri - le
    if ans <a:
        ans = a
print(ans)
0