結果

問題 No.2924 <===Super Spaceship String===>
ユーザー titiatitia
提出日時 2024-10-20 08:24:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 193,316 KB
最終ジャッジ日時 2024-10-20 08:24:51
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,808 KB
testcase_01 AC 39 ms
53,348 KB
testcase_02 AC 35 ms
52,248 KB
testcase_03 AC 35 ms
52,408 KB
testcase_04 AC 36 ms
52,620 KB
testcase_05 AC 42 ms
52,552 KB
testcase_06 AC 41 ms
52,488 KB
testcase_07 AC 56 ms
75,700 KB
testcase_08 AC 56 ms
75,704 KB
testcase_09 AC 94 ms
82,652 KB
testcase_10 AC 308 ms
193,316 KB
testcase_11 AC 145 ms
111,220 KB
testcase_12 AC 79 ms
79,556 KB
testcase_13 AC 251 ms
186,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

S=input().strip()

X=[]

for s in S:
    if X==[]:
        X.append([s,1])
    else:
        if s=="=" and X[-1][0]==s:
            X[-1][1]+=1
        else:
            X.append([s,1])

Y=[]
for s,ko in X:
    if s==">" and len(Y)>=2 and Y[-1][0]=="=" and Y[-2][0]=="<":
        Y.pop()
        Y.pop()
    else:
        Y.append([s,ko])

    while len(Y)>=2 and Y[-1][0]=="=" and Y[-2][0]=="=":
        s,ko=Y.pop()
        Y[-1][1]+=ko

ANS=0
for s,ko in Y:
    ANS+=ko

print(ANS)
0