結果

問題 No.2924 <===Super Spaceship String===>
ユーザー H20H20
提出日時 2024-10-12 15:08:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 251,152 KB
最終ジャッジ日時 2024-10-16 17:54:02
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 124 ms
120,072 KB
testcase_08 AC 128 ms
119,668 KB
testcase_09 AC 106 ms
100,392 KB
testcase_10 AC 280 ms
202,568 KB
testcase_11 AC 142 ms
118,348 KB
testcase_12 AC 106 ms
103,324 KB
testcase_13 AC 323 ms
251,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
S = list(input())
ans = len(S)
deep = 0
D = collections.defaultdict(collections.deque)
NG = collections.defaultdict(int)
NG[0]=1
for s in S:
    if s == '<':
        deep+=1
        D[deep] = collections.deque()
        D[deep].append(s)
    if s == '=':
        D[deep].append(s)
    if s == '>':
        if len(D[deep])<=1:
            NG[deep]=1
        D[deep].append(s)
        if NG[deep]==0:
            ans-=len(D[deep])
            deep-=1
print(ans)    
        
0