結果

問題 No.2924 <===Super Spaceship String===>
ユーザー miya145592miya145592
提出日時 2024-10-12 15:07:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 102,596 KB
最終ジャッジ日時 2024-10-16 17:53:57
合計ジャッジ時間 1,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,124 KB
testcase_01 AC 37 ms
52,264 KB
testcase_02 AC 37 ms
52,160 KB
testcase_03 AC 36 ms
52,692 KB
testcase_04 AC 47 ms
52,424 KB
testcase_05 AC 38 ms
52,820 KB
testcase_06 AC 39 ms
52,700 KB
testcase_07 AC 90 ms
102,596 KB
testcase_08 AC 79 ms
98,632 KB
testcase_09 AC 68 ms
76,364 KB
testcase_10 AC 97 ms
99,092 KB
testcase_11 AC 83 ms
88,868 KB
testcase_12 AC 74 ms
81,728 KB
testcase_13 AC 87 ms
89,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
S = input().strip()
dp = []
for s in S:
    if s=="<":
        dp.append(1)
    elif s=="=":
        if dp and (dp[-1]==1 or dp[-1]==2):
            dp.append(2)
        else:
            dp.append(0)
    else:
        if dp and dp[-1]==2:
            dp.append(3)
            while dp and dp[-1]>1:
                dp.pop()
            dp.pop()
        else:
            dp.append(0)
print(len(dp))
0