結果

問題 No.279 木の数え上げ
ユーザー 37zigen37zigen
提出日時 2016-03-29 13:05:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 45,764 KB
最終ジャッジ日時 2024-10-14 15:26:59
合計ジャッジ時間 7,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,992 KB
testcase_01 AC 129 ms
41,072 KB
testcase_02 AC 127 ms
41,200 KB
testcase_03 AC 128 ms
41,076 KB
testcase_04 AC 127 ms
41,164 KB
testcase_05 AC 128 ms
41,164 KB
testcase_06 AC 129 ms
41,144 KB
testcase_07 AC 133 ms
41,292 KB
testcase_08 AC 129 ms
41,008 KB
testcase_09 AC 126 ms
40,892 KB
testcase_10 AC 293 ms
45,584 KB
testcase_11 AC 228 ms
42,760 KB
testcase_12 AC 276 ms
45,188 KB
testcase_13 AC 209 ms
42,028 KB
testcase_14 AC 318 ms
45,764 KB
testcase_15 AC 307 ms
45,636 KB
testcase_16 AC 295 ms
45,508 KB
testcase_17 AC 298 ms
45,604 KB
testcase_18 AC 262 ms
45,188 KB
testcase_19 AC 311 ms
45,636 KB
testcase_20 AC 305 ms
45,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		int countT=0;
		int countR=0;
		int countE=0;
		for(int i=0;i<str.length();i++){
			if(str.charAt(i)=='t')
				countT++;
			if(str.charAt(i)=='r')
				countR++;
			if(str.charAt(i)=='e')
				countE++;
		}
		countE=countE/2;
		int count=Math.min(countT, Math.min(countR, countE));
		System.out.println(count);
	}
}
0