結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,164 KB
testcase_01 AC 115 ms
41,284 KB
testcase_02 AC 108 ms
41,424 KB
testcase_03 AC 108 ms
39,844 KB
testcase_04 AC 116 ms
41,088 KB
testcase_05 AC 113 ms
41,356 KB
testcase_06 AC 111 ms
41,056 KB
testcase_07 AC 103 ms
39,952 KB
testcase_08 AC 120 ms
41,296 KB
testcase_09 AC 110 ms
40,292 KB
testcase_10 AC 269 ms
49,108 KB
testcase_11 AC 188 ms
42,824 KB
testcase_12 AC 241 ms
48,524 KB
testcase_13 AC 175 ms
42,348 KB
testcase_14 AC 274 ms
49,148 KB
testcase_15 AC 241 ms
48,720 KB
testcase_16 AC 218 ms
48,860 KB
testcase_17 AC 282 ms
49,068 KB
testcase_18 AC 225 ms
45,888 KB
testcase_19 AC 283 ms
49,064 KB
testcase_20 AC 252 ms
48,996 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(charCount['t'], Math.min(charCount['r'], (charCount['e'] / 2)));

        System.out.println(treeMax);

    }

}
0