結果

問題 No.279 木の数え上げ
ユーザー bluemegane
提出日時 2018-09-26 09:03:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 3,995 ms
コンパイル使用メモリ 103,296 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-10-09 06:57:05
合計ジャッジ時間 3,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        var m = new int[3];
        var s = Console.ReadLine().Trim();
        foreach (var x in s)
            if (x == 't') m[0]++;
            else if (x == 'r') m[1]++;
            else if (x == 'e') m[2]++;
        m[2] /= 2;
        Console.WriteLine(m.Min());
    }
}
0