結果

問題 No.279 木の数え上げ
ユーザー fal_rndfal_rnd
提出日時 2017-07-18 23:48:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 47,128 KB
最終ジャッジ日時 2024-10-08 11:07:59
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,076 KB
testcase_01 AC 134 ms
41,104 KB
testcase_02 AC 131 ms
41,300 KB
testcase_03 AC 133 ms
41,392 KB
testcase_04 AC 128 ms
41,332 KB
testcase_05 AC 136 ms
41,448 KB
testcase_06 AC 127 ms
41,328 KB
testcase_07 AC 133 ms
41,076 KB
testcase_08 AC 130 ms
41,204 KB
testcase_09 AC 130 ms
40,980 KB
testcase_10 AC 310 ms
47,036 KB
testcase_11 AC 219 ms
43,144 KB
testcase_12 AC 267 ms
46,352 KB
testcase_13 AC 223 ms
42,140 KB
testcase_14 AC 310 ms
47,008 KB
testcase_15 AC 304 ms
46,820 KB
testcase_16 AC 332 ms
46,484 KB
testcase_17 AC 309 ms
47,084 KB
testcase_18 AC 276 ms
45,164 KB
testcase_19 AC 303 ms
47,012 KB
testcase_20 AC 303 ms
47,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class C{
	public static void main(String[]$){
		int t=0,r=0,e=0;
		for(char c:new java.util.Scanner(System.in).next().toCharArray()) {
			if(c=='t')++t;
			if(c=='r')++r;
			if(c=='e')++e;
		}
		System.out.println(Math.min(Math.min(t,r),e/2));
	}
}
0