結果

問題 No.279 木の数え上げ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 20:35:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 45,948 KB
最終ジャッジ日時 2024-11-25 21:34:28
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,992 KB
testcase_01 AC 121 ms
41,324 KB
testcase_02 AC 114 ms
41,040 KB
testcase_03 AC 121 ms
41,308 KB
testcase_04 AC 119 ms
41,452 KB
testcase_05 AC 116 ms
41,272 KB
testcase_06 AC 114 ms
40,884 KB
testcase_07 AC 112 ms
41,016 KB
testcase_08 AC 115 ms
40,988 KB
testcase_09 AC 112 ms
41,232 KB
testcase_10 AC 280 ms
45,588 KB
testcase_11 AC 201 ms
43,472 KB
testcase_12 AC 262 ms
45,948 KB
testcase_13 AC 195 ms
42,620 KB
testcase_14 AC 277 ms
45,768 KB
testcase_15 AC 276 ms
45,740 KB
testcase_16 AC 255 ms
45,796 KB
testcase_17 AC 287 ms
45,528 KB
testcase_18 AC 236 ms
43,988 KB
testcase_19 AC 275 ms
45,432 KB
testcase_20 AC 284 ms
45,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int t = 0;
        int r = 0;
        int e = 0;
        for(int i=0; i<S.length(); i++){
            if( 't'==S.charAt(i) ){
                t++;
            }else if( 'r'==S.charAt(i) ){
                r++;
            }else if( 'e'==S.charAt(i) ){
                e++;
            }
        }
        int min = Math.min(t, Math.min(r,e/2) );
        System.out.println(min);
    }
}
0