結果

問題 No.279 木の数え上げ
ユーザー chankou0920chankou0920
提出日時 2017-10-26 17:41:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 111,356 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-11-21 20:06:11
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,688 KB
testcase_01 AC 24 ms
18,048 KB
testcase_02 AC 24 ms
18,432 KB
testcase_03 AC 25 ms
18,304 KB
testcase_04 AC 24 ms
18,432 KB
testcase_05 AC 23 ms
18,304 KB
testcase_06 AC 23 ms
18,304 KB
testcase_07 AC 23 ms
18,176 KB
testcase_08 AC 23 ms
18,304 KB
testcase_09 AC 24 ms
18,304 KB
testcase_10 AC 82 ms
22,784 KB
testcase_11 AC 36 ms
18,816 KB
testcase_12 AC 60 ms
21,376 KB
testcase_13 AC 29 ms
18,736 KB
testcase_14 AC 86 ms
23,552 KB
testcase_15 AC 74 ms
22,400 KB
testcase_16 AC 71 ms
22,016 KB
testcase_17 AC 82 ms
22,912 KB
testcase_18 AC 55 ms
20,224 KB
testcase_19 AC 82 ms
22,912 KB
testcase_20 AC 84 ms
23,296 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;  // 追加

public class Program {
	public void Solve() {
		Char[] c = Console.ReadLine().ToCharArray();
		int t = c.Count(x=>x.Equals('t'));
		int r = c.Count(x=>x.Equals('r'));
		int e = c.Count(x=>x.Equals('e'));
		int count = 0;
		while (true) {
			t -= 1;
			r -= 1;
			e -= 2;
			if (t < 0 || r < 0 || e < 0) {
				break;
			}
			count++;
		}
		Console.WriteLine(count);
	}
	
	public static void Main(string[] args) {
		Program program = new Program();
		program.Solve();
	}
}
0