結果

問題 No.279 木の数え上げ
ユーザー TakaTaka
提出日時 2016-11-01 19:02:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 76,996 KB
実行使用メモリ 57,144 KB
最終ジャッジ日時 2024-05-03 20:51:52
合計ジャッジ時間 9,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,024 KB
testcase_01 AC 131 ms
53,780 KB
testcase_02 AC 129 ms
53,972 KB
testcase_03 AC 128 ms
54,028 KB
testcase_04 AC 126 ms
53,776 KB
testcase_05 AC 127 ms
54,136 KB
testcase_06 AC 130 ms
54,160 KB
testcase_07 AC 128 ms
53,872 KB
testcase_08 AC 130 ms
53,892 KB
testcase_09 AC 125 ms
54,168 KB
testcase_10 AC 309 ms
57,140 KB
testcase_11 AC 223 ms
54,408 KB
testcase_12 AC 262 ms
56,848 KB
testcase_13 AC 209 ms
54,076 KB
testcase_14 AC 287 ms
56,992 KB
testcase_15 AC 294 ms
56,796 KB
testcase_16 AC 251 ms
56,996 KB
testcase_17 AC 313 ms
56,900 KB
testcase_18 AC 248 ms
56,388 KB
testcase_19 AC 308 ms
57,144 KB
testcase_20 AC 313 ms
56,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.math.BigDecimal;

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