結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 15:36:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 93,152 KB
最終ジャッジ日時 2024-10-12 15:37:03
合計ジャッジ時間 1,328 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S = str(input())
stack = []
ng = []
for i in range(len(S)):
  if S[i] == "<":
    stack.append(i)
  elif S[i] == ">" and stack:
    ng.append((stack.pop(), i))

new_ng = []
left = -1
right = -1
for i, j in ng:
  if i + 1 == j or i + 1 == left and right + 1 == j:
    if not left == right == -1:
      new_ng.append((left, right))
      left = -1
      right = -1
      continue
  if left == right == -1:
    left = i
    right = j
  elif i < left and j > right:
    left = i
    right = j
  else:
    new_ng.append((left, right))
    left = i
    right = j
ans = len(S)
for i, j in new_ng:
  ans -= j - i + 1

print(ans)
0