結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
15,744 KB
testcase_01 AC 566 ms
10,496 KB
testcase_02 AC 500 ms
10,496 KB
testcase_03 AC 436 ms
10,496 KB
testcase_04 AC 471 ms
10,496 KB
testcase_05 AC 569 ms
10,496 KB
testcase_06 AC 822 ms
10,496 KB
testcase_07 AC 431 ms
11,644 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
import re

for i in range(500000):
    S = re.sub("<=+>","",S)

print(len(S))
exit()
0