結果

問題 No.2924 <===Super Spaceship String===>
ユーザー lollipoplollipop
提出日時 2024-10-12 16:13:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 111,884 KB
最終ジャッジ日時 2024-10-16 17:55:26
合計ジャッジ時間 1,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 42 ms
53,628 KB
testcase_03 AC 42 ms
53,756 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 41 ms
53,504 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 118 ms
111,804 KB
testcase_08 AC 113 ms
111,884 KB
testcase_09 AC 75 ms
76,800 KB
testcase_10 AC 117 ms
98,184 KB
testcase_11 AC 101 ms
90,928 KB
testcase_12 AC 85 ms
82,864 KB
testcase_13 AC 90 ms
88,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

S = input()

dq = deque([])
l = 0
for i in range(len(S)):
    if S[i] == "<":
        l += 1
        dq.append(S[i])
    elif S[i] == ">":
        if l > 0 and dq[-1] == "=":
            while True:
                x = dq.pop()
                if x == "<":
                    l -= 1
                    break
        else:
            l = 0
            dq.append(S[i])
    else:
        dq.append(S[i])

print(len(dq))
0