結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-28 13:47:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 276 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 205,744 KB
最終ジャッジ日時 2024-10-28 13:47:25
合計ジャッジ時間 5,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
70,564 KB
testcase_01 AC 54 ms
64,004 KB
testcase_02 AC 56 ms
63,860 KB
testcase_03 AC 55 ms
63,340 KB
testcase_04 AC 55 ms
63,368 KB
testcase_05 AC 55 ms
63,420 KB
testcase_06 AC 55 ms
64,280 KB
testcase_07 AC 56 ms
66,516 KB
testcase_08 AC 59 ms
67,360 KB
testcase_09 AC 74 ms
78,516 KB
testcase_10 AC 107 ms
80,824 KB
testcase_11 AC 135 ms
80,868 KB
testcase_12 AC 84 ms
79,244 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
S = str(input())

if len(S) % 3 == 0 and 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