結果

問題 No.279 木の数え上げ
ユーザー kou6839kou6839
提出日時 2015-09-21 12:53:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 57,232 KB
最終ジャッジ日時 2024-10-14 15:12:55
合計ジャッジ時間 7,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,824 KB
testcase_01 AC 134 ms
54,016 KB
testcase_02 AC 134 ms
53,776 KB
testcase_03 AC 135 ms
54,216 KB
testcase_04 AC 132 ms
53,996 KB
testcase_05 AC 136 ms
53,944 KB
testcase_06 AC 132 ms
54,120 KB
testcase_07 AC 132 ms
54,084 KB
testcase_08 AC 134 ms
54,236 KB
testcase_09 AC 130 ms
54,028 KB
testcase_10 AC 295 ms
57,172 KB
testcase_11 AC 221 ms
54,500 KB
testcase_12 AC 264 ms
57,020 KB
testcase_13 AC 215 ms
54,644 KB
testcase_14 AC 317 ms
57,160 KB
testcase_15 AC 301 ms
57,008 KB
testcase_16 AC 299 ms
57,128 KB
testcase_17 AC 303 ms
57,000 KB
testcase_18 AC 260 ms
56,504 KB
testcase_19 AC 304 ms
56,892 KB
testcase_20 AC 307 ms
57,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.concurrent.locks.ReentrantReadWriteLock;

public class Main{
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		
		String in = sc.next();
		int t=0,r=0,e=0;
		for(int i=0;i<in.length();i++){
			if(in.charAt(i)=='t') t++;
			if(in.charAt(i)=='r') r++;
			if(in.charAt(i)=='e') e++;
		}
		
		if(t>=1 && r>=1 && e>=2){
			System.out.println(Math.min(t, Math.min(r, e/2)));
		}else{
			System.out.println(0);
		}
	}
}
0