結果

問題 No.2924 <===Super Spaceship String===>
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 15:44:53
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 138 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 192,872 KB
最終ジャッジ日時 2024-10-16 17:54:57
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
68,096 KB
testcase_01 AC 54 ms
62,720 KB
testcase_02 AC 54 ms
62,976 KB
testcase_03 AC 53 ms
63,232 KB
testcase_04 AC 54 ms
63,104 KB
testcase_05 AC 52 ms
62,592 KB
testcase_06 AC 53 ms
62,464 KB
testcase_07 AC 57 ms
65,664 KB
testcase_08 AC 59 ms
65,408 KB
testcase_09 AC 79 ms
77,440 KB
testcase_10 AC 109 ms
81,432 KB
testcase_11 AC 102 ms
80,732 KB
testcase_12 AC 85 ms
79,324 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
S = str(input())

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

print(len(new_S))
0