結果

問題 No.279 木の数え上げ
ユーザー yagi2yagi2
提出日時 2017-04-20 15:40:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 79,520 KB
実行使用メモリ 45,764 KB
最終ジャッジ日時 2024-07-19 20:59:37
合計ジャッジ時間 7,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,316 KB
testcase_01 AC 98 ms
40,172 KB
testcase_02 AC 102 ms
40,668 KB
testcase_03 AC 102 ms
39,760 KB
testcase_04 AC 114 ms
40,736 KB
testcase_05 AC 114 ms
40,956 KB
testcase_06 AC 102 ms
40,024 KB
testcase_07 AC 111 ms
41,196 KB
testcase_08 AC 113 ms
41,068 KB
testcase_09 AC 116 ms
41,212 KB
testcase_10 AC 276 ms
45,744 KB
testcase_11 AC 214 ms
42,384 KB
testcase_12 AC 242 ms
45,220 KB
testcase_13 AC 188 ms
42,156 KB
testcase_14 AC 282 ms
45,600 KB
testcase_15 AC 277 ms
45,564 KB
testcase_16 AC 258 ms
45,256 KB
testcase_17 AC 260 ms
45,712 KB
testcase_18 AC 249 ms
44,052 KB
testcase_19 AC 287 ms
45,588 KB
testcase_20 AC 282 ms
45,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

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

        String S = sc.next();
        int t = 0, r = 0, e = 0;

        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i) == 't') t++;
            if (S.charAt(i) == 'r') r++;
            if (S.charAt(i) == 'e') e++;
        }

        e /= 2;

        List<Integer> tree = new ArrayList<>();

        tree.add(t);
        tree.add(r);
        tree.add(e);

        Collections.sort(tree);
        System.out.println(tree.get(0));
    }
}
0