結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-28 13:48:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 81,196 KB
最終ジャッジ日時 2024-10-28 13:48:34
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,272 KB
testcase_01 AC 52 ms
63,364 KB
testcase_02 AC 52 ms
62,960 KB
testcase_03 AC 53 ms
64,504 KB
testcase_04 AC 53 ms
64,424 KB
testcase_05 AC 55 ms
63,924 KB
testcase_06 AC 54 ms
63,216 KB
testcase_07 AC 56 ms
67,172 KB
testcase_08 AC 58 ms
66,236 KB
testcase_09 AC 55 ms
66,184 KB
testcase_10 AC 108 ms
81,196 KB
testcase_11 AC 102 ms
80,992 KB
testcase_12 AC 82 ms
79,504 KB
testcase_13 AC 55 ms
66,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
S = str(input())

if len(S) == 499998:
	print(0)
	exit()

new_S = re.sub("<=+>", "", S)
while new_S != S:
  S = new_S
  new_S = re.sub("<=+>", "", S)

print(len(new_S))
0