結果

問題 No.279 木の数え上げ
ユーザー CroweaCrowea
提出日時 2019-01-24 19:47:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,155 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-16 04:41:26
合計ジャッジ時間 11,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
18,688 KB
testcase_01 AC 30 ms
18,688 KB
testcase_02 AC 30 ms
18,688 KB
testcase_03 AC 30 ms
18,432 KB
testcase_04 AC 29 ms
18,688 KB
testcase_05 AC 30 ms
18,560 KB
testcase_06 AC 29 ms
18,816 KB
testcase_07 AC 29 ms
18,432 KB
testcase_08 AC 29 ms
18,560 KB
testcase_09 AC 29 ms
18,560 KB
testcase_10 AC 1,052 ms
33,280 KB
testcase_11 AC 222 ms
21,248 KB
testcase_12 AC 707 ms
28,288 KB
testcase_13 AC 135 ms
19,584 KB
testcase_14 AC 1,155 ms
34,560 KB
testcase_15 AC 928 ms
31,488 KB
testcase_16 AC 848 ms
30,336 KB
testcase_17 AC 1,122 ms
33,280 KB
testcase_18 AC 571 ms
25,728 KB
testcase_19 AC 1,019 ms
33,024 KB
testcase_20 AC 1,137 ms
34,176 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;

class Program
{
    static void Main(string[] args)
    {
        int treeCount = 0;
        var line = Console.ReadLine().ToCharArray().OrderBy(x => x == 't').ThenBy(x => x == 'r').ThenBy(x => x == 'e').ToArray();
        Array.Reverse(line);
        int tCnt = line.Count(x => x == 't');
        int rCnt = line.Count(x => x == 'r');
        int eCnt = line.Count(x => x == 'e');

        if ( tCnt == 0 || 
             rCnt == 0 ||
             eCnt < 2)
        {
            Console.WriteLine(treeCount);
            return;
        }

        int treeCnt = 0;
        while (tCnt >= 1 && rCnt >= 1 && eCnt >= 2)
        {
            treeCnt++;
            tCnt--;
            rCnt--;
            eCnt -= 2;
        }
        Console.WriteLine(treeCnt);
    }
}
0