結果

問題 No.279 木の数え上げ
ユーザー kaoetayakaoetaya
提出日時 2016-11-29 20:27:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 45,840 KB
最終ジャッジ日時 2024-11-27 13:51:05
合計ジャッジ時間 7,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,068 KB
testcase_01 AC 95 ms
39,840 KB
testcase_02 AC 99 ms
40,224 KB
testcase_03 AC 112 ms
41,132 KB
testcase_04 AC 110 ms
40,780 KB
testcase_05 AC 112 ms
41,260 KB
testcase_06 AC 95 ms
40,100 KB
testcase_07 AC 116 ms
40,840 KB
testcase_08 AC 102 ms
40,224 KB
testcase_09 AC 99 ms
40,240 KB
testcase_10 AC 258 ms
45,492 KB
testcase_11 AC 200 ms
42,328 KB
testcase_12 AC 263 ms
45,840 KB
testcase_13 AC 188 ms
41,992 KB
testcase_14 AC 255 ms
45,524 KB
testcase_15 AC 263 ms
45,676 KB
testcase_16 AC 250 ms
45,724 KB
testcase_17 AC 284 ms
45,660 KB
testcase_18 AC 219 ms
44,624 KB
testcase_19 AC 282 ms
45,640 KB
testcase_20 AC 287 ms
45,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

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