結果

問題 No.2924 <===Super Spaceship String===>
ユーザー CecilCecil
提出日時 2024-10-13 15:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 135,856 KB
最終ジャッジ日時 2024-10-16 17:56:14
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,240 KB
testcase_01 AC 38 ms
52,144 KB
testcase_02 AC 39 ms
52,140 KB
testcase_03 AC 39 ms
53,120 KB
testcase_04 AC 38 ms
52,504 KB
testcase_05 AC 38 ms
52,072 KB
testcase_06 AC 38 ms
52,516 KB
testcase_07 AC 131 ms
135,856 KB
testcase_08 AC 122 ms
131,696 KB
testcase_09 AC 99 ms
96,128 KB
testcase_10 AC 141 ms
123,884 KB
testcase_11 AC 118 ms
111,144 KB
testcase_12 AC 102 ms
101,556 KB
testcase_13 AC 114 ms
119,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
N = len(S)
stack = list()
f = 0 #先頭に<があるか
for i in range(N):
    if S[i]==">" and f:
        ok = False
        while True:
            p = stack.pop()
            if p=="=":
                ok = True
            if p=="<" and ok:
                break
            elif p=="<":
                stack.append(p)
                stack.append(">")
                f = 1
                break
        f -= 1
    elif S[i]==">":
        f = 0
        stack.append(S[i])
    elif S[i]=="<":
        f += 1
        stack.append(S[i])
    else:
        stack.append(S[i])
#print(stack)
print(len(stack))
0