結果

問題 No.2924 <===Super Spaceship String===>
ユーザー rlangevinrlangevin
提出日時 2024-10-26 15:27:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 136,848 KB
最終ジャッジ日時 2024-10-26 15:27:34
合計ジャッジ時間 2,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,752 KB
testcase_01 AC 37 ms
52,584 KB
testcase_02 AC 36 ms
51,888 KB
testcase_03 AC 36 ms
52,940 KB
testcase_04 AC 38 ms
52,336 KB
testcase_05 AC 37 ms
52,336 KB
testcase_06 AC 36 ms
53,144 KB
testcase_07 AC 125 ms
136,848 KB
testcase_08 AC 111 ms
132,756 KB
testcase_09 AC 96 ms
105,044 KB
testcase_10 AC 103 ms
105,084 KB
testcase_11 AC 95 ms
105,576 KB
testcase_12 AC 92 ms
105,288 KB
testcase_13 AC 110 ms
121,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input()) + ["="]
stack = [">"]
ans = 0
for s in S:
    if s != ">":
        stack.append(s)
    else:
        if stack[-1] == "<":
            ans += len(stack)
            stack = [">"]
        else:
            temp = 0
            while stack[-1] == "=":
                temp += 1
                stack.pop()
            if stack[-1] == "<":
                stack.pop()
            else:
                ans += temp + len(stack)
                stack = [">"]

ans += len(stack) - 2
print(ans)
0