結果

問題 No.279 木の数え上げ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 08:36:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 57,276 KB
最終ジャッジ日時 2024-09-13 11:16:47
合計ジャッジ時間 7,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,824 KB
testcase_01 AC 131 ms
54,104 KB
testcase_02 AC 130 ms
53,904 KB
testcase_03 AC 132 ms
54,128 KB
testcase_04 AC 131 ms
54,068 KB
testcase_05 AC 131 ms
53,904 KB
testcase_06 AC 130 ms
53,956 KB
testcase_07 AC 130 ms
54,124 KB
testcase_08 AC 130 ms
54,104 KB
testcase_09 AC 130 ms
54,152 KB
testcase_10 AC 291 ms
57,164 KB
testcase_11 AC 227 ms
54,232 KB
testcase_12 AC 259 ms
56,788 KB
testcase_13 AC 208 ms
54,604 KB
testcase_14 AC 311 ms
57,008 KB
testcase_15 AC 283 ms
56,996 KB
testcase_16 AC 276 ms
57,044 KB
testcase_17 AC 291 ms
56,896 KB
testcase_18 AC 271 ms
56,552 KB
testcase_19 AC 293 ms
57,144 KB
testcase_20 AC 295 ms
57,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {

		String s = sc.next();
		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++;
		}
		System.out.println(min(t, r, e/2));


	}
	
	public static int max(int... ar) {Arrays.sort(ar);return ar[ar.length-1];}
	public static int min(int... ar) {Arrays.sort(ar);return ar[0];}
	
}
0