結果

問題 No.2924 <===Super Spaceship String===>
ユーザー noriocnorioc
提出日時 2024-10-12 16:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 113,432 KB
最終ジャッジ日時 2024-10-16 17:55:14
合計ジャッジ時間 1,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 46 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,456 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 77 ms
76,160 KB
testcase_08 AC 78 ms
76,160 KB
testcase_09 AC 80 ms
76,800 KB
testcase_10 AC 162 ms
113,432 KB
testcase_11 AC 102 ms
82,952 KB
testcase_12 AC 76 ms
76,160 KB
testcase_13 AC 114 ms
106,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
st = []
for c in S:
    match c:
        case '<':
            st.append((c, 1))
        case '=':
            if st and st[-1][0] == '=':
                _, cnt = st.pop()
                st.append((c, cnt+1))
            else:
                st.append((c, 1))
        case '>':
            if len(st) >= 2 and st[-2][0] == '<' and st[-1][0] == '=':
                st.pop()
                st.pop()
            else:
                st.append((c, 1))

print(sum(cnt for _, cnt in st))
0