結果

問題 No.2924 <===Super Spaceship String===>
ユーザー bluemeganebluemegane
提出日時 2024-10-13 19:43:17
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 16,983 ms
コンパイル使用メモリ 168,160 KB
実行使用メモリ 192,224 KB
最終ジャッジ日時 2024-10-13 19:43:37
合計ジャッジ時間 19,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
27,520 KB
testcase_01 AC 50 ms
27,264 KB
testcase_02 AC 43 ms
27,776 KB
testcase_03 AC 41 ms
27,380 KB
testcase_04 AC 44 ms
27,520 KB
testcase_05 WA -
testcase_06 AC 43 ms
27,264 KB
testcase_07 AC 56 ms
35,200 KB
testcase_08 AC 55 ms
35,584 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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 f = false;
        foreach (var x in s)
        {
            if (x == '<') { st.Push(0); f = false; }
            else if (x == '=')
            {
                if (!f)
                {
                    if (st.Peek() == 0) f = true;
                }
                st.Push(1);
            }
            else
            {
                if (f)
                {
                    f = false;
                    while (true)
                    {
                        if (st.Pop() == 0) break;
                    }
                }
                else st.Push(2);
            }
        }
        Console.WriteLine(st.Count);
    }
}
0