結果

問題 No.279 木の数え上げ
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 22:50:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 45,756 KB
最終ジャッジ日時 2024-05-02 01:48:55
合計ジャッジ時間 7,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,032 KB
testcase_01 AC 102 ms
40,092 KB
testcase_02 AC 100 ms
40,092 KB
testcase_03 AC 115 ms
41,240 KB
testcase_04 AC 111 ms
40,984 KB
testcase_05 AC 96 ms
39,712 KB
testcase_06 AC 111 ms
40,364 KB
testcase_07 AC 117 ms
39,836 KB
testcase_08 AC 99 ms
40,092 KB
testcase_09 AC 109 ms
41,128 KB
testcase_10 AC 280 ms
45,560 KB
testcase_11 AC 190 ms
42,392 KB
testcase_12 AC 216 ms
45,452 KB
testcase_13 AC 179 ms
41,816 KB
testcase_14 AC 275 ms
45,636 KB
testcase_15 AC 249 ms
45,488 KB
testcase_16 AC 250 ms
45,756 KB
testcase_17 AC 250 ms
45,604 KB
testcase_18 AC 232 ms
44,220 KB
testcase_19 AC 248 ms
45,584 KB
testcase_20 AC 289 ms
45,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No279 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        String str = s.next();
        int t = 0;
        int r = 0;
        int e = 0;
        for (int i = 0; i < str.length(); i++) {
            switch (str.charAt(i)) {
                case 't':
                    t++;
                    break;
                case 'r':
                    r++;
                    break;
                case 'e':
                    e++;
                    break;
            }
        }
        System.out.println(Math.min(Math.min(t, r), e / 2));
    }
}
0