結果

問題 No.279 木の数え上げ
ユーザー GrenacheGrenache
提出日時 2015-09-18 22:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 3,730 ms
コンパイル使用メモリ 76,204 KB
実行使用メモリ 49,092 KB
最終ジャッジ日時 2024-09-26 12:34:42
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,152 KB
testcase_01 AC 115 ms
41,096 KB
testcase_02 AC 121 ms
41,312 KB
testcase_03 AC 106 ms
39,984 KB
testcase_04 AC 112 ms
40,996 KB
testcase_05 AC 108 ms
40,288 KB
testcase_06 AC 118 ms
41,308 KB
testcase_07 AC 119 ms
41,280 KB
testcase_08 AC 115 ms
41,052 KB
testcase_09 AC 122 ms
41,248 KB
testcase_10 AC 299 ms
48,820 KB
testcase_11 AC 197 ms
42,888 KB
testcase_12 AC 258 ms
48,248 KB
testcase_13 AC 192 ms
42,196 KB
testcase_14 AC 297 ms
49,092 KB
testcase_15 AC 265 ms
48,700 KB
testcase_16 AC 295 ms
48,520 KB
testcase_17 AC 276 ms
48,944 KB
testcase_18 AC 237 ms
46,044 KB
testcase_19 AC 302 ms
48,776 KB
testcase_20 AC 298 ms
49,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder279 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] s = sc.next().toCharArray();
        int[] cnt = new int[3];

        for (int i = 0; i < s.length; i++) {
        	if (s[i] == 't') {
        		cnt[0]++;
        	} else if (s[i] == 'r') {
        		cnt[1]++;
        	} else if (s[i] == 'e') {
        		cnt[2]++;
        	}
        }

        int ret = cnt[0];
        ret = Math.min(ret, cnt[1]);
        ret = Math.min(ret, cnt[2] / 2);
        
        System.out.println(ret);

        sc.close();
    }
}
0