結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,108 KB
testcase_01 AC 117 ms
40,032 KB
testcase_02 AC 131 ms
41,464 KB
testcase_03 AC 131 ms
41,088 KB
testcase_04 AC 128 ms
41,088 KB
testcase_05 AC 129 ms
41,064 KB
testcase_06 AC 129 ms
40,876 KB
testcase_07 AC 129 ms
41,136 KB
testcase_08 AC 130 ms
41,116 KB
testcase_09 AC 131 ms
40,964 KB
testcase_10 AC 323 ms
45,672 KB
testcase_11 AC 222 ms
42,528 KB
testcase_12 AC 292 ms
45,628 KB
testcase_13 AC 209 ms
41,928 KB
testcase_14 AC 322 ms
45,712 KB
testcase_15 AC 285 ms
45,284 KB
testcase_16 AC 282 ms
45,344 KB
testcase_17 AC 321 ms
45,820 KB
testcase_18 AC 252 ms
44,284 KB
testcase_19 AC 319 ms
45,644 KB
testcase_20 AC 321 ms
45,596 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