結果

問題 No.279 木の数え上げ
ユーザー nihi9119nihi9119
提出日時 2017-05-31 18:12:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 2,428 bytes
コンパイル時間 3,725 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 48,460 KB
最終ジャッジ日時 2024-09-27 05:36:19
合計ジャッジ時間 9,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
40,280 KB
testcase_01 AC 62 ms
37,272 KB
testcase_02 AC 67 ms
38,252 KB
testcase_03 AC 62 ms
36,976 KB
testcase_04 AC 59 ms
37,244 KB
testcase_05 AC 75 ms
38,644 KB
testcase_06 AC 59 ms
37,036 KB
testcase_07 AC 59 ms
37,020 KB
testcase_08 AC 70 ms
37,280 KB
testcase_09 AC 57 ms
36,796 KB
testcase_10 AC 466 ms
46,356 KB
testcase_11 AC 259 ms
41,544 KB
testcase_12 AC 394 ms
45,200 KB
testcase_13 AC 196 ms
40,592 KB
testcase_14 AC 442 ms
47,996 KB
testcase_15 AC 416 ms
46,380 KB
testcase_16 AC 413 ms
45,824 KB
testcase_17 AC 445 ms
46,364 KB
testcase_18 AC 376 ms
44,308 KB
testcase_19 AC 433 ms
46,540 KB
testcase_20 AC 500 ms
48,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test_5;

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

/**
 * No.279 木の数え上げ
 * kamipeipaa君は木が大好きですが,今日は文字列で遊んでいます。
 * kamipeipaa君は文字列SSを並び替えたときに"tree"という
 * 部分文字列をいくつ作ることが可能か興味があります。
 * 教えてあげてください。
 */

public class Question_09_0531 {

	static final int LENGTH_MIN = 1;
	static final int LENGTH_MAX = (int)Math.pow(10, 6);
	static final String KEY_T = "t";
	static final String KEY_R = "r";
	static final String KEY_E = "e";

	public static void main(String[] args) {

		InputStreamReader re = new InputStreamReader(System.in);
		BufferedReader br = new BufferedReader(re);

		try {
			String kamipeipaa = br.readLine();
			if (LengthJudg(kamipeipaa, LENGTH_MIN, LENGTH_MAX)) {

				int treeCount = 0;

				//それぞれの文字の個数を調べる("t","r","e")
				int cntT = kamipeipaa.replaceAll("[^" + KEY_T + "]", "").length();
				int cntR = kamipeipaa.replaceAll("[^" + KEY_R + "]", "").length();
				int cntE = kamipeipaa.replaceAll("[^" + KEY_E + "]", "").length();

				int cntTCount = cntT / 1;
				int cntRCount = cntR / 1;
				int cntECount = cntE / 2;

				if (cntTCount >= 1 && cntRCount >= 1 && cntECount >= 1) {
					//最小値取得
					int min = 0;
					min = Math.min(cntTCount, cntRCount);
					min = Math.min(min, cntECount);
					treeCount = min;
				} else {
					treeCount = 0;
				}

				System.out.println(treeCount);

			} else {
				System.out.println("文字列の長さが有効範囲外です");
			}

		} catch (NumberFormatException e) {
			System.out.println("数字を入力して下さい。");
		} catch (IOException e) {
			System.out.println("エラーが発生しました。");
		} finally {
			try {
				re.close();
				br.close();
			} catch (IOException e) {
				System.out.println("InputStreamReader、BufferedReaderクローズ中にエラーが発生しました");
			}
		}
	}

	/**
	 * 有効値判定
	 * @param str 判定する文字列
	 * @param max 最大値
	 * @param min 最小値
	 * @return 範囲内ならtrue,範囲外ならfalseを返す
	 */
	private static boolean LengthJudg(String str, int min, int max) {
		Boolean result = false;
		if (min <= str.length() && str.length() <= max) {
			result = true;
		}
		return result;
	}
}
0