結果

問題 No.2924 <===Super Spaceship String===>
ユーザー こめだわらこめだわら
提出日時 2024-10-12 14:57:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-10-12 14:57:11
合計ジャッジ時間 1,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,476 KB
testcase_01 AC 37 ms
51,964 KB
testcase_02 AC 37 ms
51,744 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,420 KB
testcase_07 WA -
testcase_08 AC 54 ms
76,120 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

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)>1:
            L[-1]+=1
        
print(c)
0