結果

問題 No.2924 <===Super Spaceship String===>
ユーザー bluemeganebluemegane
提出日時 2024-10-14 07:22:01
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,632 bytes
コンパイル時間 13,718 ms
コンパイル使用メモリ 166,344 KB
実行使用メモリ 184,964 KB
最終ジャッジ日時 2024-10-14 07:22:16
合計ジャッジ時間 12,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
27,392 KB
testcase_01 AC 51 ms
27,776 KB
testcase_02 AC 48 ms
27,904 KB
testcase_03 AC 47 ms
27,648 KB
testcase_04 AC 48 ms
27,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 51 ms
31,360 KB
testcase_08 AC 52 ms
31,224 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        getAns(s);
    }
    static void getAns(string s)
    {
        var st = new Stack<int>();
        var a = getQ(s);
        foreach (var x in a)
        {
            if (x <= 0) st.Push(x);
            else
            {
                if (st.Count == 0) { st.Push(1); continue; }
                if (st.Peek() < 0)
                {
                    var w = st.Pop();
                    if (st.Count == 0) continue;
                    if (st.Peek() == 0) st.Pop();
                    else { st.Push(w); st.Push(w); }
                }
                else st.Push(x);
            }
        }
        var ans = 0;
        foreach (var x in st)
        {
            if (x >= 0) ans++;
            else ans += -x;
        }
        Console.WriteLine(ans);
    }
    static int[] getQ(string s)
    {
        var n = s.Length;
        var q = new Queue<int>();
        var f = false;
        var c = 0;
        if (s[0] == '<') q.Enqueue(0);
        else if (s[0] == '>') q.Enqueue(1);
        else { f = true; c = 1; }
        for (int i = 1; i < n; i++)
        {
            if (s[i] == '=')
            {
                if (f) c++;
                else { f = true; c = 1; }
            }
            else
            {
                f = false;
                if (c > 0) { q.Enqueue(-c); c = 0; }
                if (s[i] == '<') q.Enqueue(0);
                else q.Enqueue(1);
            }
        }
        if (f) q.Enqueue(-c);
        return q.ToArray();
    }
}
0