結果

問題 No.279 木の数え上げ
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2015-04-29 14:34:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 1,181 ms
コンパイル使用メモリ 107,904 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-04-22 15:39:29
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,432 KB
testcase_01 AC 24 ms
18,304 KB
testcase_02 AC 25 ms
18,304 KB
testcase_03 AC 24 ms
18,432 KB
testcase_04 AC 23 ms
18,560 KB
testcase_05 AC 25 ms
18,432 KB
testcase_06 AC 24 ms
18,432 KB
testcase_07 AC 24 ms
18,432 KB
testcase_08 AC 24 ms
18,304 KB
testcase_09 AC 26 ms
18,560 KB
testcase_10 AC 44 ms
23,040 KB
testcase_11 AC 29 ms
18,944 KB
testcase_12 AC 37 ms
21,504 KB
testcase_13 AC 26 ms
18,092 KB
testcase_14 AC 43 ms
23,552 KB
testcase_15 AC 39 ms
22,656 KB
testcase_16 AC 40 ms
22,272 KB
testcase_17 AC 43 ms
23,168 KB
testcase_18 AC 35 ms
20,352 KB
testcase_19 AC 42 ms
22,912 KB
testcase_20 AC 44 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
static public class Program
{
    static public void Main()
    {
        var s = Console.ReadLine();
        s.ToCharArray().ValidateArray(x => 'a' <= x && x <= 'z');
        readEOF();
        var t = 0;
        var r = 0;
        var e = 0;
        foreach (var x in s)
        {
            if (x == 't') t++;
            else if (x == 'r') r++;
            else if (x == 'e') e++;
        }
        var ans = new int[] { t, r, e / 2 };
        Console.WriteLine(ans.Min());
    }
    static public void Swap<T>(ref T a, ref T b) { var tmp = a; a = b; b = tmp; }
    static void readEOF()
    {
        if (Console.In.Peek() >= 0)
            throw new Exception("invalid input too long input file");
    }

}
static public class Ex
{
    static public T Validate<T>(this T input, Func<T, bool> f)
    {
        if (!f(input))
            throw new Exception("invalid input");
        return input;
    }
    static public T[] ValidateArray<T>(this T[] input, Func<T, bool> f)
    {
        foreach (var x in input)
            if (!f(x))
                throw new Exception("invalid input");
        return input;
    }
}
0