結果

問題 No.279 木の数え上げ
ユーザー YOSHIYOSHI
提出日時 2021-03-08 19:21:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 42,632 KB
最終ジャッジ日時 2024-10-10 11:24:27
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,596 KB
testcase_01 AC 52 ms
37,072 KB
testcase_02 AC 53 ms
36,800 KB
testcase_03 AC 53 ms
36,448 KB
testcase_04 AC 53 ms
37,040 KB
testcase_05 AC 52 ms
36,732 KB
testcase_06 AC 51 ms
36,992 KB
testcase_07 AC 52 ms
36,812 KB
testcase_08 AC 52 ms
36,760 KB
testcase_09 AC 52 ms
36,876 KB
testcase_10 AC 169 ms
42,608 KB
testcase_11 AC 115 ms
39,028 KB
testcase_12 AC 171 ms
42,100 KB
testcase_13 AC 91 ms
38,416 KB
testcase_14 AC 178 ms
42,628 KB
testcase_15 AC 174 ms
42,456 KB
testcase_16 AC 170 ms
42,292 KB
testcase_17 AC 177 ms
42,396 KB
testcase_18 AC 160 ms
41,048 KB
testcase_19 AC 175 ms
42,512 KB
testcase_20 AC 174 ms
42,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000279_Main2 {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String str = br.readLine();
		int[] cnt = new int[3];
		for(int i = 0; i < str.length(); i++) {
			if(str.charAt(i) == 't') cnt[0] += 1;
			if(str.charAt(i) == 'r') cnt[1] += 1;
			if(str.charAt(i) == 'e') cnt[2] += 1;
		}
		System.out.println(Math.min(cnt[0], Math.min(cnt[1], cnt[2]/2)));
	}
}
0