結果

問題 No.279 木の数え上げ
ユーザー rf141rf141
提出日時 2015-12-20 14:17:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 45,856 KB
最終ジャッジ日時 2024-10-14 15:22:45
合計ジャッジ時間 7,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,148 KB
testcase_01 AC 130 ms
41,160 KB
testcase_02 AC 130 ms
41,196 KB
testcase_03 AC 129 ms
40,956 KB
testcase_04 AC 130 ms
41,164 KB
testcase_05 AC 127 ms
41,128 KB
testcase_06 AC 132 ms
41,404 KB
testcase_07 AC 129 ms
41,312 KB
testcase_08 AC 129 ms
41,016 KB
testcase_09 AC 128 ms
40,968 KB
testcase_10 AC 296 ms
45,480 KB
testcase_11 AC 231 ms
42,528 KB
testcase_12 AC 258 ms
45,012 KB
testcase_13 AC 205 ms
42,320 KB
testcase_14 AC 318 ms
45,856 KB
testcase_15 AC 301 ms
45,640 KB
testcase_16 AC 280 ms
45,224 KB
testcase_17 AC 299 ms
45,828 KB
testcase_18 AC 248 ms
43,944 KB
testcase_19 AC 297 ms
45,636 KB
testcase_20 AC 306 ms
45,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		System.out.println(Calc(s));
	}

	public static int Calc(String s){
		int t = 0;
		int r = 0;
		int e = 0;
		for(int i = 0; i < s.length(); i++){
			if(s.charAt(i) == 't'){
				t++;
			}else if(s.charAt(i) == 'r'){
				r++;
			}else if(s.charAt(i) == 'e'){
				e++;
			}
		}
		if(t == 0 || r == 0 || e == 0)return 0;
		return (int)Math.min((int)Math.min(t,r),e/2);
	}
}
0