結果

問題 No.2924 <===Super Spaceship String===>
ユーザー こめだわらこめだわら
提出日時 2024-10-12 14:58:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 82,792 KB
最終ジャッジ日時 2024-10-16 17:53:33
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,896 KB
testcase_01 AC 39 ms
51,816 KB
testcase_02 AC 39 ms
52,448 KB
testcase_03 AC 38 ms
51,876 KB
testcase_04 AC 39 ms
52,788 KB
testcase_05 AC 38 ms
52,640 KB
testcase_06 AC 39 ms
52,208 KB
testcase_07 AC 61 ms
75,864 KB
testcase_08 AC 58 ms
75,768 KB
testcase_09 AC 60 ms
76,536 KB
testcase_10 AC 76 ms
76,360 KB
testcase_11 AC 72 ms
76,232 KB
testcase_12 AC 66 ms
76,400 KB
testcase_13 AC 73 ms
82,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

L=[]
c=len(S)
for i in S:
    if i=='<':
        L.append(0)
    elif i=='>':
        if len(L)>0:
            if L[-1]>=1:
                c-=L[-1]+2
                L.pop()
            else:
                L=[]
        else:
            L=[]
    else:
        if len(L)>0:
            L[-1]+=1
        
print(c)
0