結果

問題 No.279 木の数え上げ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 20:35:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 45,952 KB
最終ジャッジ日時 2024-05-04 11:05:24
合計ジャッジ時間 6,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,412 KB
testcase_01 AC 107 ms
41,612 KB
testcase_02 AC 100 ms
41,720 KB
testcase_03 AC 94 ms
41,204 KB
testcase_04 AC 109 ms
41,408 KB
testcase_05 AC 112 ms
41,552 KB
testcase_06 AC 103 ms
41,252 KB
testcase_07 AC 98 ms
41,184 KB
testcase_08 AC 113 ms
41,200 KB
testcase_09 AC 114 ms
41,664 KB
testcase_10 AC 244 ms
45,784 KB
testcase_11 AC 198 ms
42,848 KB
testcase_12 AC 229 ms
45,640 KB
testcase_13 AC 185 ms
42,228 KB
testcase_14 AC 282 ms
45,952 KB
testcase_15 AC 248 ms
45,536 KB
testcase_16 AC 270 ms
45,360 KB
testcase_17 AC 262 ms
45,892 KB
testcase_18 AC 236 ms
44,304 KB
testcase_19 AC 262 ms
45,768 KB
testcase_20 AC 265 ms
45,888 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