結果

問題 No.279 木の数え上げ
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-29 15:39:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 3,331 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 45,780 KB
最終ジャッジ日時 2024-10-14 15:29:49
合計ジャッジ時間 7,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,012 KB
testcase_01 AC 116 ms
41,008 KB
testcase_02 AC 118 ms
41,144 KB
testcase_03 AC 111 ms
40,788 KB
testcase_04 AC 115 ms
40,804 KB
testcase_05 AC 105 ms
39,752 KB
testcase_06 AC 114 ms
40,964 KB
testcase_07 AC 102 ms
39,732 KB
testcase_08 AC 101 ms
39,732 KB
testcase_09 AC 116 ms
41,152 KB
testcase_10 AC 277 ms
45,768 KB
testcase_11 AC 199 ms
42,476 KB
testcase_12 AC 256 ms
45,568 KB
testcase_13 AC 187 ms
41,768 KB
testcase_14 AC 276 ms
45,780 KB
testcase_15 AC 245 ms
45,488 KB
testcase_16 AC 265 ms
45,712 KB
testcase_17 AC 253 ms
45,664 KB
testcase_18 AC 235 ms
44,176 KB
testcase_19 AC 254 ms
45,616 KB
testcase_20 AC 252 ms
45,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki279 {

	public static void main(String[] args) {

		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		scan.close();

		// String strArr[] = str.split("");

		int t = 0;
		int r = 0;
		int e = 0;
		int count = 0;

		// for(int i = 0; i < strArr.length; i++ ) {
		for (int i = 0; i < str.length(); i++) {
			switch (str.charAt(i)) {
			case 't':
				t += 1;
				break;
			case 'r':
				r += 1;
				break;
			case 'e':
				e += 1;
				break;
			}
		}

		while (t >= 1 && r >= 1 && e >= 2) {
			if (t >= 1 && r >= 1 && e >= 2) {
				count++;
				t--;
				r--;
				e -= 2;
			} else {
				break;
			}
		}
		System.out.println(count);
	}
}
0