結果

問題 No.279 木の数え上げ
ユーザー dazydazy
提出日時 2017-03-10 15:09:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 61,468 KB
最終ジャッジ日時 2024-06-24 07:50:23
合計ジャッジ時間 9,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,860 KB
testcase_01 AC 126 ms
53,952 KB
testcase_02 AC 125 ms
53,964 KB
testcase_03 AC 127 ms
54,188 KB
testcase_04 AC 125 ms
54,148 KB
testcase_05 AC 127 ms
54,196 KB
testcase_06 AC 124 ms
53,888 KB
testcase_07 AC 122 ms
54,132 KB
testcase_08 AC 122 ms
53,992 KB
testcase_09 AC 124 ms
53,812 KB
testcase_10 AC 348 ms
61,292 KB
testcase_11 AC 258 ms
57,040 KB
testcase_12 AC 291 ms
61,328 KB
testcase_13 AC 219 ms
57,056 KB
testcase_14 AC 338 ms
61,328 KB
testcase_15 AC 320 ms
61,468 KB
testcase_16 AC 317 ms
61,216 KB
testcase_17 AC 348 ms
61,328 KB
testcase_18 AC 288 ms
59,208 KB
testcase_19 AC 339 ms
61,376 KB
testcase_20 AC 348 ms
61,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int ans;
        String N = scan.next();
        String tmp;
        int t = 0, r = 0, e = 0;
        for (int i = 0; i < N.length(); i++) {
            tmp = N.substring(i, i+1);
            if (tmp.equals("t")) t++;
            else if (tmp.equals("r")) r++;
            else if (tmp.equals("e")) e++;
        }

        ans = Math.min(Math.min(t, r), e/2);
        System.out.println(ans);
    }
}
0