結果

問題 No.279 木の数え上げ
ユーザー YamaKasaYamaKasa
提出日時 2018-05-02 00:05:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 45,804 KB
最終ジャッジ日時 2024-06-28 00:16:54
合計ジャッジ時間 6,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,868 KB
testcase_01 AC 121 ms
41,168 KB
testcase_02 AC 115 ms
40,912 KB
testcase_03 AC 104 ms
41,608 KB
testcase_04 AC 101 ms
41,072 KB
testcase_05 AC 113 ms
41,252 KB
testcase_06 AC 116 ms
41,076 KB
testcase_07 AC 121 ms
41,076 KB
testcase_08 AC 115 ms
41,184 KB
testcase_09 AC 101 ms
41,172 KB
testcase_10 AC 277 ms
45,708 KB
testcase_11 AC 194 ms
42,636 KB
testcase_12 AC 247 ms
45,232 KB
testcase_13 AC 186 ms
42,004 KB
testcase_14 AC 280 ms
45,804 KB
testcase_15 AC 269 ms
45,292 KB
testcase_16 AC 242 ms
45,436 KB
testcase_17 AC 248 ms
45,596 KB
testcase_18 AC 229 ms
44,248 KB
testcase_19 AC 281 ms
45,724 KB
testcase_20 AC 280 ms
45,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		scan.close();
		int cnt1 = 0;
		int cnt2 = 0;
		int cnt3 = 0;
		for(int i = 0; i < s.length(); i++) {
			char c = s.charAt(i);
			if(c == 't') {
				cnt1 ++;
			}else if(c == 'r') {
				cnt2 ++;
			}else if(c == 'e') {
				cnt3 ++;
			}
		}
		int min = cnt1;
		if(cnt1 > cnt2) {
			min = cnt2;
		}
		if(min > cnt3 / 2) {
			min = cnt3 / 2;
		}
		System.out.println(min);
	}
}
0