結果

問題 No.279 木の数え上げ
ユーザー curryudon08curryudon08
提出日時 2020-07-21 18:03:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 113,492 KB
実行使用メモリ 31,380 KB
最終ジャッジ日時 2024-06-09 14:32:52
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
26,680 KB
testcase_01 AC 21 ms
26,388 KB
testcase_02 AC 22 ms
24,508 KB
testcase_03 AC 22 ms
24,748 KB
testcase_04 AC 22 ms
24,504 KB
testcase_05 AC 21 ms
24,260 KB
testcase_06 AC 23 ms
24,640 KB
testcase_07 AC 23 ms
26,564 KB
testcase_08 AC 24 ms
24,484 KB
testcase_09 AC 23 ms
24,752 KB
testcase_10 AC 71 ms
31,380 KB
testcase_11 AC 33 ms
24,984 KB
testcase_12 AC 55 ms
29,500 KB
testcase_13 AC 30 ms
24,572 KB
testcase_14 AC 73 ms
29,728 KB
testcase_15 AC 66 ms
28,740 KB
testcase_16 AC 61 ms
30,220 KB
testcase_17 AC 67 ms
29,360 KB
testcase_18 AC 47 ms
24,368 KB
testcase_19 AC 71 ms
28,832 KB
testcase_20 AC 74 ms
29,472 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.Linq;

namespace _0279
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine().ToCharArray();

            var cnt = new int[3];
            cnt[0] = s.Count(c => c == 't');
            cnt[1] = s.Count(c => c == 'r');
            cnt[2] = s.Count(c => c == 'e') / 2;

            Console.WriteLine(cnt.Min());
        }
    }
}
0