結果

問題 No.2924 <===Super Spaceship String===>
ユーザー titiatitia
提出日時 2024-10-20 08:25:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 939 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 83,760 KB
最終ジャッジ日時 2024-10-20 08:25:11
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 202 ms
11,644 KB
testcase_08 AC 211 ms
11,776 KB
testcase_09 AC 229 ms
14,380 KB
testcase_10 AC 939 ms
79,532 KB
testcase_11 AC 408 ms
32,556 KB
testcase_12 AC 214 ms
12,968 KB
testcase_13 AC 883 ms
83,760 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