結果

問題 No.2924 <===Super Spaceship String===>
ユーザー nikoro256nikoro256
提出日時 2024-10-12 15:09:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2024-10-16 17:54:03
合計ジャッジ時間 1,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,400 KB
testcase_01 AC 42 ms
54,420 KB
testcase_02 AC 42 ms
53,732 KB
testcase_03 AC 41 ms
53,964 KB
testcase_04 AC 42 ms
54,364 KB
testcase_05 AC 41 ms
55,168 KB
testcase_06 AC 41 ms
54,300 KB
testcase_07 AC 62 ms
68,924 KB
testcase_08 AC 54 ms
67,364 KB
testcase_09 AC 64 ms
70,984 KB
testcase_10 AC 89 ms
78,976 KB
testcase_11 AC 81 ms
79,032 KB
testcase_12 AC 64 ms
70,944 KB
testcase_13 AC 79 ms
79,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
S=input()
flag = False
dq=deque()
last=deque()
for i in range(len(S)):
    if S[i]=="<":
        last.append("<")
        dq.append("<")
    elif S[i]==">":
        if len(last)>0 and len(dq)>0 and last[-1]=="<" and dq[-1]=="=":
            last.pop()
            p = -1
            while p!="<":
                p=dq.pop()
        else:
            last.append(">")
            dq.append(">")
    else:
        dq.append("=")
    # print(list(dq),list(last))
print(len(dq))
0