結果

問題 No.2924 <===Super Spaceship String===>
ユーザー amesyuamesyu
提出日時 2024-10-12 18:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-10-16 17:55:57
合計ジャッジ時間 1,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,752 KB
testcase_01 AC 42 ms
52,008 KB
testcase_02 AC 38 ms
51,632 KB
testcase_03 AC 39 ms
51,952 KB
testcase_04 AC 38 ms
51,996 KB
testcase_05 AC 38 ms
53,528 KB
testcase_06 AC 37 ms
52,244 KB
testcase_07 AC 48 ms
61,344 KB
testcase_08 AC 49 ms
60,308 KB
testcase_09 AC 51 ms
62,220 KB
testcase_10 AC 78 ms
76,360 KB
testcase_11 AC 66 ms
70,528 KB
testcase_12 AC 57 ms
64,512 KB
testcase_13 AC 62 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = []
p = 0
for i in range(len(s)):
    
    if s[i] == "<":
        ans.append(1)
    elif len(ans) == 0:
        p += 1
    elif s[i] == ">":
        if ans[-1] == 1:
            p += sum(ans) + 1
            ans = []
        else: ans.pop()
    else:
        ans[-1] += 1
print(p + sum(ans))

0