結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ktsn-udktsn-ud
提出日時 2024-10-12 15:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,960 KB
最終ジャッジ日時 2024-10-16 17:54:55
合計ジャッジ時間 2,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 45 ms
52,224 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 127 ms
117,632 KB
testcase_08 AC 121 ms
117,376 KB
testcase_09 AC 78 ms
76,288 KB
testcase_10 AC 129 ms
115,876 KB
testcase_11 AC 103 ms
91,124 KB
testcase_12 AC 82 ms
81,568 KB
testcase_13 AC 125 ms
120,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def main():
    s = stdin.readline().rstrip()
    last_str = []
    tail = []
    for c in s:
        last_str.append(c)
        if len(last_str) < 2 or len(tail) == 0:
            if c != '=':
                tail.append(c)
            continue
        if tail[-1] == '<' and last_str[-2] == '=' and last_str[-1] == '>':
            while last_str[-1] != '<':
                last_str.pop()
            last_str.pop()
            tail.pop()
            continue
        if c != '=':
            tail.append(c)

    print(len(last_str))

    return


if __name__ == "__main__":
    main()
0