結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ルクルク
提出日時 2024-10-12 14:58:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 380 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 73,016 KB
最終ジャッジ日時 2024-10-12 14:58:58
合計ジャッジ時間 1,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,596 KB
testcase_01 AC 35 ms
52,644 KB
testcase_02 AC 33 ms
52,240 KB
testcase_03 AC 34 ms
52,692 KB
testcase_04 AC 35 ms
52,320 KB
testcase_05 AC 35 ms
52,400 KB
testcase_06 AC 36 ms
51,824 KB
testcase_07 AC 50 ms
68,732 KB
testcase_08 AC 50 ms
69,684 KB
testcase_09 AC 53 ms
73,016 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
r=[]
for i in range(len(s)):
  if s[i]=="<":
    r.append(["<",1])
  elif s[i]=="=":
    if 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