結果

問題 No.279 木の数え上げ
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2015-04-29 14:34:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 115,336 KB
実行使用メモリ 31,540 KB
最終ジャッジ日時 2024-10-14 14:45:28
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,720 KB
testcase_01 AC 27 ms
26,496 KB
testcase_02 AC 27 ms
24,200 KB
testcase_03 AC 26 ms
24,364 KB
testcase_04 AC 26 ms
24,452 KB
testcase_05 AC 26 ms
24,364 KB
testcase_06 AC 27 ms
26,412 KB
testcase_07 AC 27 ms
26,372 KB
testcase_08 AC 27 ms
24,484 KB
testcase_09 AC 27 ms
26,372 KB
testcase_10 AC 45 ms
30,872 KB
testcase_11 AC 30 ms
24,708 KB
testcase_12 AC 40 ms
27,280 KB
testcase_13 AC 29 ms
24,432 KB
testcase_14 AC 47 ms
31,540 KB
testcase_15 AC 43 ms
28,584 KB
testcase_16 AC 42 ms
30,212 KB
testcase_17 AC 45 ms
27,320 KB
testcase_18 AC 36 ms
26,508 KB
testcase_19 AC 45 ms
29,072 KB
testcase_20 AC 47 ms
31,492 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