結果

問題 No.2924 <===Super Spaceship String===>
ユーザー titiatitia
提出日時 2024-10-20 08:22:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 462 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 65,520 KB
最終ジャッジ日時 2024-10-20 08:22:35
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,572 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 211 ms
11,648 KB
testcase_08 AC 210 ms
11,772 KB
testcase_09 AC 209 ms
14,236 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

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