結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ありあけありあけ
提出日時 2024-10-12 17:00:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 151 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,120 KB
最終ジャッジ日時 2024-10-16 17:55:55
合計ジャッジ時間 4,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,872 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 26 ms
10,368 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 25 ms
10,368 KB
testcase_07 AC 27 ms
11,520 KB
testcase_08 AC 29 ms
11,644 KB
testcase_09 AC 32 ms
11,744 KB
testcase_10 AC 70 ms
13,280 KB
testcase_11 AC 55 ms
12,868 KB
testcase_12 AC 36 ms
11,744 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
import re

for i in range(500000):
    S1 = re.sub("<=+>","",S)
    if S != S1:
        S = S1
    else:
        break
print(len(S))
exit()
0