結果

問題 No.279 木の数え上げ
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:30:42
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 462 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 64,216 KB
最終ジャッジ日時 2024-09-19 19:46:46
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,912 KB
testcase_01 AC 103 ms
52,596 KB
testcase_02 AC 102 ms
52,968 KB
testcase_03 AC 99 ms
53,092 KB
testcase_04 AC 108 ms
54,232 KB
testcase_05 AC 116 ms
54,236 KB
testcase_06 AC 110 ms
53,976 KB
testcase_07 AC 107 ms
53,156 KB
testcase_08 AC 114 ms
53,964 KB
testcase_09 AC 98 ms
52,920 KB
testcase_10 AC 312 ms
61,972 KB
testcase_11 AC 224 ms
56,648 KB
testcase_12 AC 297 ms
62,164 KB
testcase_13 AC 196 ms
54,700 KB
testcase_14 AC 308 ms
61,956 KB
testcase_15 AC 305 ms
61,992 KB
testcase_16 AC 298 ms
62,092 KB
testcase_17 AC 319 ms
62,340 KB
testcase_18 AC 236 ms
59,716 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con279 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder sb = new StringBuilder(s.nextLine());
		s.close();
		int t = 0,r = 0,e = 0;
		for(int i = 0;i < sb.length();i++){
			switch(sb.charAt(i)){
			case 't':t++;
			break;
			case 'r':r++;
			break;
			case 'e':e++;
			break;
			}
		}
		e = e / 2;
		System.out.println(Math.min(t, Math.min(r, e)));


	}

}
0