結果

問題 No.2924 <===Super Spaceship String===>
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-12 15:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 156,440 KB
最終ジャッジ日時 2024-10-16 17:54:35
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,540 KB
testcase_01 AC 42 ms
51,944 KB
testcase_02 AC 39 ms
52,408 KB
testcase_03 AC 39 ms
52,344 KB
testcase_04 AC 39 ms
53,252 KB
testcase_05 AC 39 ms
52,328 KB
testcase_06 AC 39 ms
53,196 KB
testcase_07 AC 124 ms
136,464 KB
testcase_08 AC 137 ms
145,308 KB
testcase_09 AC 104 ms
100,844 KB
testcase_10 AC 213 ms
156,440 KB
testcase_11 AC 148 ms
121,472 KB
testcase_12 AC 119 ms
106,092 KB
testcase_13 AC 136 ms
118,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(input())
stack=[[S[0]]]
for s in S[1:]:
    if s=="<":
        stack.append([s])
    elif s=="=":
        if stack[-1][-1]=="<" or stack[-1][-1]=="=":
            stack[-1].append(s)
        else:
            stack.append([s])
    else:
        if stack[-1][0]=="<" and stack[-1][-1]=="=":
            stack.pop()
        else:
            stack.append([s])
ans=[]
for s in stack:
    ans+=s
ans="".join(ans)
print(len(ans))
0