結果

問題 No.2924 <===Super Spaceship String===>
ユーザー futamegawafutamegawa
提出日時 2024-10-12 16:53:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 150 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 144,604 KB
最終ジャッジ日時 2024-10-16 17:55:51
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,968 KB
testcase_01 AC 59 ms
62,976 KB
testcase_02 AC 57 ms
62,592 KB
testcase_03 AC 59 ms
62,720 KB
testcase_04 AC 57 ms
62,592 KB
testcase_05 AC 58 ms
62,976 KB
testcase_06 AC 59 ms
62,592 KB
testcase_07 AC 65 ms
65,408 KB
testcase_08 AC 68 ms
66,048 KB
testcase_09 AC 88 ms
78,080 KB
testcase_10 AC 123 ms
81,196 KB
testcase_11 AC 119 ms
81,428 KB
testcase_12 AC 99 ms
79,360 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

s = input()
p = r'<={1,}>'

while True:
    match = re.search(p, s)
    if not match:
        break
    s = re.sub(p, '', s)

print(len(s))
0