結果

問題 No.279 木の数え上げ
ユーザー nCk_cvnCk_cv
提出日時 2015-11-28 00:43:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 75,680 KB
実行使用メモリ 61,348 KB
最終ジャッジ日時 2024-10-14 15:21:23
合計ジャッジ時間 7,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,212 KB
testcase_01 AC 135 ms
54,056 KB
testcase_02 AC 135 ms
54,180 KB
testcase_03 AC 133 ms
54,012 KB
testcase_04 AC 131 ms
53,712 KB
testcase_05 AC 137 ms
54,296 KB
testcase_06 AC 131 ms
54,288 KB
testcase_07 AC 134 ms
54,128 KB
testcase_08 AC 135 ms
53,864 KB
testcase_09 AC 134 ms
53,840 KB
testcase_10 AC 308 ms
61,204 KB
testcase_11 AC 220 ms
56,400 KB
testcase_12 AC 279 ms
61,088 KB
testcase_13 AC 205 ms
54,304 KB
testcase_14 AC 314 ms
61,300 KB
testcase_15 AC 281 ms
60,868 KB
testcase_16 AC 292 ms
61,232 KB
testcase_17 AC 310 ms
61,104 KB
testcase_18 AC 249 ms
57,092 KB
testcase_19 AC 308 ms
61,244 KB
testcase_20 AC 311 ms
61,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
      
      
public class Main {	

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] S = sc.next().toCharArray();
		int T = 0;
		int R = 0;
		int E = 0;
		for(int i = 0; i < S.length; i++) {
			if(S[i] == 't') T++;
			if(S[i] == 'r') R++;
			if(S[i] == 'e') E++;
		}
		System.out.println(Math.min(Math.min(T, R), E/2));
	}
}
0