結果

問題 No.279 木の数え上げ
ユーザー spaciaspacia
提出日時 2015-12-19 13:02:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 42,680 KB
最終ジャッジ日時 2024-10-14 15:22:18
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,908 KB
testcase_01 AC 45 ms
36,700 KB
testcase_02 AC 45 ms
36,684 KB
testcase_03 AC 46 ms
36,932 KB
testcase_04 AC 44 ms
36,912 KB
testcase_05 AC 43 ms
36,884 KB
testcase_06 AC 44 ms
36,832 KB
testcase_07 AC 45 ms
37,024 KB
testcase_08 AC 43 ms
36,708 KB
testcase_09 AC 42 ms
36,896 KB
testcase_10 AC 158 ms
42,256 KB
testcase_11 AC 97 ms
39,080 KB
testcase_12 AC 129 ms
41,212 KB
testcase_13 AC 72 ms
38,068 KB
testcase_14 AC 153 ms
42,680 KB
testcase_15 AC 142 ms
42,472 KB
testcase_16 AC 151 ms
42,400 KB
testcase_17 AC 151 ms
42,500 KB
testcase_18 AC 120 ms
39,804 KB
testcase_19 AC 151 ms
42,480 KB
testcase_20 AC 161 ms
42,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main279 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String s = br.readLine();
		int cntT = 0, cntR = 0, cntE = 0;
		
		for (int i = 0; i < s.length(); i++) {
			char c = s.charAt(i);
			if (c == 't') cntT++;
			if (c == 'r') cntR++;
			if (c == 'e') cntE++;
		}
		
		System.out.println(Math.min(Math.min(cntT, cntR), cntE / 2));
	}
}
0