結果

問題 No.2924 <===Super Spaceship String===>
ユーザー titiatitia
提出日時 2024-10-20 08:16:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,192 KB
最終ジャッジ日時 2024-10-20 08:16:54
合計ジャッジ時間 5,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
17,568 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 218 ms
11,644 KB
testcase_08 AC 201 ms
11,772 KB
testcase_09 WA -
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])

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

print(ANS)
0