結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Yakumo221Yakumo221
提出日時 2024-10-12 15:02:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,664 KB
最終ジャッジ日時 2024-10-12 15:02:35
合計ジャッジ時間 1,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,244 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 87 ms
102,664 KB
testcase_08 AC 78 ms
98,956 KB
testcase_09 AC 64 ms
76,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)

stack = []
equal = []
ans = n

for i in range(n):
    c = s[i]
    if c == "<":
        stack.append(i)
    elif c == "=":
        equal.append(i)
    elif c == ">":
        if stack:
            if stack[-1] == (i-1):
                stack = []
                equal = []
            else:
                l = stack.pop()
                cnt = 2
                while equal:
                    if l <= equal[-1] < i:
                        equal.pop()
                        cnt += 1
                    else:
                        break
                ans -= cnt
        else:
            equal = []

print(ans)
0