結果

問題 No.279 木の数え上げ
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 21:43:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,322 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 42,784 KB
最終ジャッジ日時 2024-12-24 01:28:45
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,060 KB
testcase_01 AC 56 ms
36,936 KB
testcase_02 AC 58 ms
36,764 KB
testcase_03 AC 58 ms
37,052 KB
testcase_04 AC 56 ms
37,116 KB
testcase_05 AC 58 ms
37,116 KB
testcase_06 AC 58 ms
36,932 KB
testcase_07 AC 56 ms
36,476 KB
testcase_08 AC 57 ms
36,676 KB
testcase_09 AC 58 ms
36,492 KB
testcase_10 AC 210 ms
42,592 KB
testcase_11 AC 127 ms
39,260 KB
testcase_12 AC 184 ms
42,044 KB
testcase_13 AC 96 ms
38,408 KB
testcase_14 AC 195 ms
42,784 KB
testcase_15 AC 197 ms
42,324 KB
testcase_16 AC 203 ms
42,448 KB
testcase_17 AC 178 ms
42,380 KB
testcase_18 AC 160 ms
40,120 KB
testcase_19 AC 198 ms
42,512 KB
testcase_20 AC 197 ms
42,680 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