結果

問題 No.2924 <===Super Spaceship String===>
ユーザー loop0919loop0919
提出日時 2024-09-16 01:33:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 159,900 KB
最終ジャッジ日時 2024-10-16 17:52:48
合計ジャッジ時間 3,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 130 ms
131,080 KB
testcase_08 AC 108 ms
131,324 KB
testcase_09 AC 132 ms
99,716 KB
testcase_10 AC 372 ms
159,900 KB
testcase_11 AC 206 ms
115,912 KB
testcase_12 AC 107 ms
96,692 KB
testcase_13 AC 290 ms
156,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

S = list(input())
rle_S = []

for s, array in groupby(S):
    if s == "=":
        rle_S.append((s, len(list(array))))
    else:
        rle_S.extend([(s, 1)] * len(list(array)))

stack = []

for s, length in rle_S:
    stack.append((s, length))
    if len(stack) >= 2:
        pre_s, pre_length = stack[-2]
        if pre_s == s == "=":
            stack.pop()
            stack.pop()
            stack.append((s, length + pre_length))
    
    if len(stack) >= 3:
        pre2_s, pre2_length = stack[-3]
        if pre2_s + pre_s + s == "<=>":
            stack.pop()
            stack.pop()
            stack.pop()

print(sum(length for _, length in stack))

0