結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-28 13:46:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 220,732 KB
最終ジャッジ日時 2024-10-28 13:46:07
合計ジャッジ時間 6,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
69,764 KB
testcase_01 AC 65 ms
63,156 KB
testcase_02 WA -
testcase_03 AC 53 ms
63,428 KB
testcase_04 AC 53 ms
63,780 KB
testcase_05 AC 52 ms
63,340 KB
testcase_06 AC 52 ms
63,008 KB
testcase_07 AC 55 ms
66,540 KB
testcase_08 AC 58 ms
67,908 KB
testcase_09 AC 74 ms
78,444 KB
testcase_10 AC 105 ms
80,800 KB
testcase_11 AC 102 ms
80,876 KB
testcase_12 AC 81 ms
79,884 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
S = str(input())

if S[:2 * len(S) // 3] == "<=" * (len(S) // 3) and S[2 * len(S) // 3 + 1:] == ">" * (len(S) // 3):
	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