結果

問題 No.2924 <===Super Spaceship String===>
ユーザー titiatitia
提出日時 2024-10-20 08:23:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 509 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 368,056 KB
最終ジャッジ日時 2024-10-20 08:23:51
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,768 KB
testcase_01 AC 40 ms
52,072 KB
testcase_02 AC 36 ms
52,676 KB
testcase_03 AC 36 ms
52,536 KB
testcase_04 AC 36 ms
53,436 KB
testcase_05 AC 36 ms
52,140 KB
testcase_06 AC 39 ms
53,252 KB
testcase_07 AC 59 ms
75,752 KB
testcase_08 AC 58 ms
75,944 KB
testcase_09 AC 116 ms
82,528 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

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=Y[:-2]
    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