結果

問題 No.279 木の数え上げ
コンテスト
ユーザー fujita
提出日時 2023-05-08 15:17:40
言語 C#
(.NET 10.0.201)
コンパイル:
dotnet_c
実行:
/usr/bin/dotnet_wrap
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,101 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 6,862 ms
コンパイル使用メモリ 173,548 KB
実行使用メモリ 229,868 KB
最終ジャッジ日時 2026-05-19 18:40:42
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 MLE * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net10.0/main.dll
  main -> /home/judge/data/code/bin/Release/net10.0/publish/

ソースコード

diff #
raw source code

using System.Collections.Generic;
using System;
using System.Linq;
using System.Drawing;


namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {

            string S = Console.ReadLine();
            string[] str = new string[S.Length];

            int Tcount = 0 , Rcount = 0 , Ecount = 0 , treecount = 0;

            for(int i = 0; i < S.Length; i++)
            {
                str[i] = S.Substring(i, 1);
                if (str[i] == "t")
                {
                    Tcount++;
                }
                else if (str[i] == "r")
                {
                    Rcount++;
                }
                else if (str[i] == "e")
                {
                    Ecount++;
                }
            }
            
            
            while (Tcount >= 1 && Rcount >= 1 && Ecount >= 2)
            {

                Tcount = Tcount - 1;
                Rcount = Rcount - 1;
                Ecount = Ecount - 2;
                treecount++;
            }
            Console.WriteLine(treecount);
        }
    }
}
0