結果

問題 No.2924 <===Super Spaceship String===>
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-12 18:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 629 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 202,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 18:27:05
合計ジャッジ時間 3,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 RE -
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 5 ms
6,820 KB
testcase_09 AC 7 ms
6,820 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	string s;
	cin >> s;
	string st = "";
	bool has_l = false, has_e = false;
	for (char c : s) {
		if (c == '<') {
			has_l = true;
			has_e = false;
			st += c;
		} else if (c == '=') {
			if (has_l) {
				has_e = true;
			}
			st += c;
		} else {
			if (has_l && has_e) {
				while (st.back() == '=') {
					st.pop_back();
				}
				assert(st.back() == '<');
				st.pop_back();
			} else {
				has_l = false;
				has_e = false;
				st += c;
			}
		}
	}
	cout << st.size() << endl;
}
0