結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ルクルク
提出日時 2024-10-12 14:59:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 124,988 KB
最終ジャッジ日時 2024-10-16 17:53:35
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,696 KB
testcase_01 AC 40 ms
52,376 KB
testcase_02 AC 40 ms
52,472 KB
testcase_03 AC 39 ms
52,136 KB
testcase_04 AC 40 ms
52,512 KB
testcase_05 AC 38 ms
53,000 KB
testcase_06 AC 40 ms
52,120 KB
testcase_07 AC 55 ms
68,984 KB
testcase_08 AC 55 ms
69,256 KB
testcase_09 AC 60 ms
73,248 KB
testcase_10 AC 151 ms
124,988 KB
testcase_11 AC 82 ms
82,728 KB
testcase_12 AC 62 ms
73,804 KB
testcase_13 AC 112 ms
105,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
r=[]
for i in range(len(s)):
  if s[i]=="<":
    r.append(["<",1])
  elif s[i]=="=":
    if len(r)==0:
      r.append(["=",1])
    elif r[-1][0]=="=":
      r[-1][1]+=1
    else:
      r.append(["=",1])
  else:
    if len(r)>1:
      if r[-1][0]=="=" and r[-2][0]=="<":
        r.pop()
        r.pop()
      else:
        r.append([">",1])
    else:
      r.append([">",1])
ans=0
for x in r:
  ans+=x[1]
print(ans)
0