結果

問題 No.279 木の数え上げ
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 21:43:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,322 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-06-06 10:39:56
合計ジャッジ時間 5,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,296 KB
testcase_01 AC 52 ms
50,360 KB
testcase_02 AC 54 ms
50,000 KB
testcase_03 AC 49 ms
37,092 KB
testcase_04 AC 50 ms
37,068 KB
testcase_05 AC 50 ms
37,088 KB
testcase_06 AC 50 ms
36,672 KB
testcase_07 AC 49 ms
36,768 KB
testcase_08 AC 52 ms
36,596 KB
testcase_09 AC 51 ms
37,092 KB
testcase_10 AC 168 ms
42,284 KB
testcase_11 AC 106 ms
39,172 KB
testcase_12 AC 143 ms
42,768 KB
testcase_13 AC 83 ms
51,084 KB
testcase_14 AC 166 ms
55,188 KB
testcase_15 AC 158 ms
42,172 KB
testcase_16 AC 169 ms
42,408 KB
testcase_17 AC 156 ms
42,468 KB
testcase_18 AC 138 ms
40,944 KB
testcase_19 AC 159 ms
42,792 KB
testcase_20 AC 163 ms
42,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        String s = ns();
        int[] cnt = new int[256];
        for (int i = 0; i < s.length(); i++) {
            cnt[s.charAt(i)]++;
        }

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

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0