結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
69,820 KB
testcase_01 AC 52 ms
63,788 KB
testcase_02 AC 53 ms
63,784 KB
testcase_03 AC 53 ms
64,488 KB
testcase_04 AC 57 ms
63,492 KB
testcase_05 AC 55 ms
64,732 KB
testcase_06 AC 51 ms
63,776 KB
testcase_07 AC 56 ms
66,440 KB
testcase_08 AC 59 ms
66,904 KB
testcase_09 AC 71 ms
78,704 KB
testcase_10 AC 103 ms
81,016 KB
testcase_11 AC 109 ms
80,860 KB
testcase_12 AC 80 ms
79,232 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