結果

問題 No.279 木の数え上げ
ユーザー samplelpmassamplelpmas
提出日時 2016-12-17 09:45:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 49,244 KB
最終ジャッジ日時 2024-05-08 04:02:06
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,340 KB
testcase_01 AC 112 ms
40,304 KB
testcase_02 AC 109 ms
41,180 KB
testcase_03 AC 105 ms
41,276 KB
testcase_04 AC 111 ms
41,488 KB
testcase_05 AC 113 ms
40,104 KB
testcase_06 AC 118 ms
41,016 KB
testcase_07 AC 123 ms
41,476 KB
testcase_08 AC 107 ms
41,196 KB
testcase_09 AC 108 ms
40,164 KB
testcase_10 AC 294 ms
49,144 KB
testcase_11 AC 201 ms
43,020 KB
testcase_12 AC 248 ms
48,600 KB
testcase_13 AC 185 ms
42,408 KB
testcase_14 AC 264 ms
48,952 KB
testcase_15 AC 260 ms
48,700 KB
testcase_16 AC 236 ms
48,604 KB
testcase_17 AC 263 ms
48,792 KB
testcase_18 AC 222 ms
46,048 KB
testcase_19 AC 275 ms
48,952 KB
testcase_20 AC 274 ms
49,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] INPUT_STRING = sc.next().toCharArray();

        int[] charCount = new int[123];

        for (int i = 0; i < INPUT_STRING.length; i++) {
            charCount[INPUT_STRING[i]]++;
        }

        int treeMax = Math.min(Math.min(charCount['t'], charCount['r']), (charCount['e'] / 2));

        System.out.println(treeMax);

    }

}
0