結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ymskskyymsksky
提出日時 2024-10-12 16:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 112,928 KB
最終ジャッジ日時 2024-10-16 17:55:46
合計ジャッジ時間 1,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 67 ms
75,904 KB
testcase_08 AC 66 ms
75,776 KB
testcase_09 AC 68 ms
76,288 KB
testcase_10 AC 149 ms
112,928 KB
testcase_11 AC 94 ms
83,276 KB
testcase_12 AC 72 ms
76,160 KB
testcase_13 AC 115 ms
106,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
que = []
for c in s:
    if c == "<":
        que.append((1, c))
    elif c == "=":
        if len(que) > 0:
            bef = que.pop()
            if bef[1] == "=":
                que.append((bef[0] + 1, c))
            else:
                que.append(bef)
                que.append((1, c))
        else:
            que.append((1, c))
    elif c == ">":
        if len(que) >= 2:
            bef = que.pop()
            befbef = que.pop()
            if bef[1] == "=" and befbef[1] == "<":
                continue
            else:
                que.append(befbef)
                que.append(bef)
                que.append((1, c))
        else:
            que.append((1, c))

ans = 0
while que:
    cnt, _ = que.pop()
    ans += cnt
print(ans)
0