結果

問題 No.2924 <===Super Spaceship String===>
ユーザー 電たくT電たくT
提出日時 2024-10-12 15:25:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 628 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 65,592 KB
最終ジャッジ日時 2024-10-12 15:25:17
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,088 KB
testcase_01 AC 36 ms
52,992 KB
testcase_02 AC 34 ms
53,004 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = [S[a] for a in range(len(S))]
K = True

while K:
    dame = 0
    i = -1
    k = 0
    for a in range(len(L)):
        if L[a] == "<":
            i = a
            k = 0
        elif L[a] == "=":
            if i != -1:
                k = 1
        elif L[a] == ">":
            if i != -1 and k == 1:
                if a == len(L)-1:
                    L = L[:i]
                else:
                    L = L[:i] + L[a+1:]
                break
            else:
                i = -1
                k = 0
        if a == len(L)-1:
            dame = 1
    if dame >= 1:
        K = False

print(len(L))
0