結果

問題 No.2924 <===Super Spaceship String===>
ユーザー tnodinotnodino
提出日時 2024-09-26 06:23:17
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,165 bytes
コンパイル時間 13,961 ms
コンパイル使用メモリ 400,868 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-10-16 17:53:15
合計ジャッジ時間 14,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 24 ms
16,640 KB
testcase_11 AC 12 ms
8,320 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 19 ms
17,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;
use proconio::fastout;
use proconio::marker::Chars;

#[fastout]
#[allow(non_snake_case)]
fn main() {
    input! {
        S: Chars,
    }
    assert!(1 <= S.len() && S.len() <= 500_000);
    let mut T = Vec::new();
    let mut cnt = 0;
    for i in 0..S.len() {
        assert!(S[i] == '<' || S[i] == '>' || S[i] == '=');
        if S[i] == '=' {
            cnt += 1;
        }
        else {
            if cnt > 0 {
                T.push(('=', cnt));
                cnt = 0;
            }
            T.push((S[i], 1));
        }
    }
    if cnt > 0 {
        T.push(('=', cnt));
    }
    let mut stc: Vec<(char, usize)> = Vec::new();
    for i in 0..T.len() {
        let mut n = stc.len();
        if n > 0 && stc[n-1].0 == '=' && T[i].0 == '=' {
            stc[n-1].1 += T[i].1;
        }
        else {
            stc.push(T[i]);
            n += 1;
        }
        if n < 3 {
            continue;
        }
        if stc[n-3].0 == '<' && stc[n-2].0 == '=' && stc[n-1].0 == '>' {
            for _ in 0..3 {
                stc.pop();
            }
        }
    }
    println!("{}", stc.iter().map(|&x| x.1).sum::<usize>());
}
0