結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,224 KB
testcase_01 AC 128 ms
54,000 KB
testcase_02 AC 131 ms
53,912 KB
testcase_03 AC 131 ms
53,676 KB
testcase_04 AC 129 ms
53,840 KB
testcase_05 AC 128 ms
53,796 KB
testcase_06 AC 128 ms
53,912 KB
testcase_07 AC 127 ms
53,772 KB
testcase_08 AC 128 ms
54,088 KB
testcase_09 AC 126 ms
53,900 KB
testcase_10 AC 308 ms
56,980 KB
testcase_11 AC 227 ms
54,464 KB
testcase_12 AC 276 ms
56,796 KB
testcase_13 AC 207 ms
54,552 KB
testcase_14 AC 315 ms
57,012 KB
testcase_15 AC 278 ms
56,628 KB
testcase_16 AC 277 ms
56,812 KB
testcase_17 AC 313 ms
56,940 KB
testcase_18 AC 249 ms
56,440 KB
testcase_19 AC 306 ms
56,988 KB
testcase_20 AC 315 ms
56,808 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