結果

問題 No.279 木の数え上げ
ユーザー koukonkokoukonko
提出日時 2015-12-23 16:16:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 55,204 KB
最終ジャッジ日時 2024-10-14 15:22:51
合計ジャッジ時間 5,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,248 KB
testcase_01 AC 58 ms
50,112 KB
testcase_02 AC 57 ms
50,268 KB
testcase_03 AC 56 ms
50,292 KB
testcase_04 AC 57 ms
50,212 KB
testcase_05 AC 58 ms
50,304 KB
testcase_06 AC 56 ms
50,376 KB
testcase_07 AC 57 ms
50,276 KB
testcase_08 AC 56 ms
50,056 KB
testcase_09 AC 56 ms
50,036 KB
testcase_10 AC 197 ms
54,964 KB
testcase_11 AC 121 ms
51,856 KB
testcase_12 AC 173 ms
54,448 KB
testcase_13 AC 93 ms
51,708 KB
testcase_14 AC 198 ms
55,204 KB
testcase_15 AC 196 ms
55,100 KB
testcase_16 AC 192 ms
54,856 KB
testcase_17 AC 198 ms
55,048 KB
testcase_18 AC 178 ms
52,900 KB
testcase_19 AC 200 ms
55,132 KB
testcase_20 AC 198 ms
54,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			char[] tree = {'t', 'r', 'e'};
			int[] count = new int[tree.length];

			String S = buff.readLine();
			for(int i = 0; i < S.length(); ++i){
				for(int j = 0; j < tree.length; ++j){
					if(S.charAt(i) == tree[j]){
						count[j]++;
					}
				}
			}
			count[2] /= 2;
			int min = Integer.MAX_VALUE;
			for(int i = 0; i < tree.length; ++i){
				if(count[i] < min){
					min = count[i];
				}
			}

			System.out.println(min);
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0