結果

問題 No.279 木の数え上げ
ユーザー TakaTaka
提出日時 2016-11-01 19:03:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 2,840 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 57,232 KB
最終ジャッジ日時 2024-05-03 20:52:01
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
53,140 KB
testcase_01 AC 109 ms
53,716 KB
testcase_02 AC 123 ms
54,116 KB
testcase_03 AC 100 ms
53,116 KB
testcase_04 AC 97 ms
52,892 KB
testcase_05 AC 109 ms
54,128 KB
testcase_06 AC 101 ms
53,040 KB
testcase_07 AC 112 ms
54,180 KB
testcase_08 AC 110 ms
53,868 KB
testcase_09 AC 120 ms
54,108 KB
testcase_10 AC 273 ms
56,976 KB
testcase_11 AC 201 ms
56,344 KB
testcase_12 AC 224 ms
57,232 KB
testcase_13 AC 172 ms
54,340 KB
testcase_14 AC 288 ms
57,092 KB
testcase_15 AC 243 ms
56,988 KB
testcase_16 AC 249 ms
56,844 KB
testcase_17 AC 260 ms
57,180 KB
testcase_18 AC 240 ms
56,468 KB
testcase_19 AC 273 ms
56,892 KB
testcase_20 AC 249 ms
57,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class a{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String a=sc.next();
		
		int t=0, r=0, e=0;
		
		for(int i=0; i<a.length(); i++){
			if(a.charAt(i)=='t'){
				t++;
			}else if(a.charAt(i)=='r'){
				r++;
			}else if(a.charAt(i)=='e'){
				e++;
			}
		}
		
		int cnt=0;
		
		do{
			if(t<=0){
				break;
			}
			else if(r<=0){
				break;
			}
			else if(e<=1){
				break;
			}
			else{
				t--;
				r--;
				e=e-2;
				cnt++;
			}
			
		}while(true);
		
		System.out.println(cnt);
    }
}
0