結果

問題 No.2924 <===Super Spaceship String===>
ユーザー うにれうにれ
提出日時 2024-10-12 15:22:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 78,012 KB
最終ジャッジ日時 2024-10-16 17:54:23
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,560 KB
testcase_01 AC 37 ms
53,100 KB
testcase_02 AC 38 ms
53,804 KB
testcase_03 AC 37 ms
52,212 KB
testcase_04 AC 37 ms
53,308 KB
testcase_05 AC 37 ms
52,156 KB
testcase_06 AC 37 ms
51,904 KB
testcase_07 AC 46 ms
61,340 KB
testcase_08 AC 47 ms
61,824 KB
testcase_09 AC 49 ms
62,452 KB
testcase_10 AC 65 ms
72,380 KB
testcase_11 AC 56 ms
64,532 KB
testcase_12 AC 53 ms
64,980 KB
testcase_13 AC 63 ms
78,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
mod = 998244353
mod2 = 10**9+7

S = input()
left = []
deled = 0
for i in range(len(S)):
    ni = i-deled
    if S[i] == "<":
        left.append(ni)
    if S[i] == ">":
        if len(left) == 0:continue
        if left[-1] + 1 == ni:
            left = []
            continue
        l = left.pop()
        deled += ni-l+1
print(len(S)-deled)
0