結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ryuusagiryuusagi
提出日時 2024-10-12 16:12:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 101,644 KB
最終ジャッジ日時 2024-10-16 17:55:15
合計ジャッジ時間 1,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,732 KB
testcase_01 AC 39 ms
52,772 KB
testcase_02 AC 38 ms
52,860 KB
testcase_03 AC 38 ms
52,872 KB
testcase_04 AC 39 ms
54,380 KB
testcase_05 AC 38 ms
51,744 KB
testcase_06 AC 38 ms
53,200 KB
testcase_07 AC 89 ms
100,984 KB
testcase_08 AC 87 ms
100,988 KB
testcase_09 AC 65 ms
76,104 KB
testcase_10 AC 107 ms
76,544 KB
testcase_11 AC 93 ms
76,296 KB
testcase_12 AC 79 ms
76,436 KB
testcase_13 AC 116 ms
101,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f():
    global ans, S, t, q
    S = 0
    if t:
        ans += len(t)
        t = []
    for l, _ in q:
        ans += len(l)
        q = []

s = input()

t = []
q = []

S = 0
ans = 0
for c in s:
    if c == '<':
        if S:
            q.append((t, S))
        t = ['<']
        S = 1
    elif c == '=':
        t.append('=')
        if S == 1 or S == 2:
            S = 2
        else:
            f()
    else:
        if S == 2:
            if q:
                t, S = q.pop()
            else:
                t, S = [], 0
        else:
            t.append('>')
            f()
f()
print(ans)
0