結果

問題 No.2924 <===Super Spaceship String===>
ユーザー atcoder8atcoder8
提出日時 2024-10-12 16:41:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 20,253 ms
コンパイル使用メモリ 388,020 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-16 17:55:55
合計ジャッジ時間 12,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        s: String,
    }

    let mut removed_length = 0_usize;
    let mut lt_cnt = 0_usize;
    let mut stack = vec![];
    for c in s.chars() {
        match c {
            '<' => {
                lt_cnt += 1;
                stack.push('<');
            }
            '=' => {
                stack.push('=');
            }
            '>' => {
                if lt_cnt == 0 || stack.last() != Some(&'=') {
                    lt_cnt = 0;
                    stack.push('>');
                } else {
                    removed_length += 1;
                    while let Some(prev_c) = stack.pop() {
                        removed_length += 1;

                        if prev_c == '<' {
                            break;
                        }
                    }
                    lt_cnt -= 1;
                }
            }
            _ => panic!(),
        }
    }

    println!("{}", s.len() - removed_length);
}
0