結果

問題 No.2924 <===Super Spaceship String===>
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-16 11:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 109,536 KB
最終ジャッジ日時 2024-10-16 17:52:53
合計ジャッジ時間 1,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,944 KB
testcase_01 AC 37 ms
52,728 KB
testcase_02 AC 37 ms
52,276 KB
testcase_03 AC 37 ms
52,568 KB
testcase_04 AC 38 ms
51,824 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 38 ms
52,504 KB
testcase_07 AC 107 ms
109,536 KB
testcase_08 AC 96 ms
105,824 KB
testcase_09 AC 66 ms
76,616 KB
testcase_10 AC 114 ms
108,488 KB
testcase_11 AC 83 ms
90,800 KB
testcase_12 AC 71 ms
81,928 KB
testcase_13 AC 93 ms
95,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
ans=[]
left=0
for i in S:
	ans.append(i)
	if i=="<":
		left+=1
	elif i==">" and left:
		if ans[-2]=="<":
			left=0
			continue
		left-=1
		ans.pop()
		while ans[-1]=="=":
			ans.pop()
		ans.pop()
print(len(ans))
0