結果
問題 | No.279 木の数え上げ |
ユーザー | omi_UT |
提出日時 | 2017-03-10 21:40:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 189 ms / 2,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 2,256 ms |
コンパイル使用メモリ | 74,100 KB |
実行使用メモリ | 54,944 KB |
最終ジャッジ日時 | 2024-06-24 07:55:43 |
合計ジャッジ時間 | 5,489 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,084 KB |
testcase_01 | AC | 54 ms
49,828 KB |
testcase_02 | AC | 56 ms
50,064 KB |
testcase_03 | AC | 56 ms
49,968 KB |
testcase_04 | AC | 55 ms
50,064 KB |
testcase_05 | AC | 55 ms
50,004 KB |
testcase_06 | AC | 56 ms
50,012 KB |
testcase_07 | AC | 55 ms
49,632 KB |
testcase_08 | AC | 60 ms
50,052 KB |
testcase_09 | AC | 56 ms
49,876 KB |
testcase_10 | AC | 189 ms
54,676 KB |
testcase_11 | AC | 123 ms
51,744 KB |
testcase_12 | AC | 182 ms
54,612 KB |
testcase_13 | AC | 90 ms
51,232 KB |
testcase_14 | AC | 189 ms
54,812 KB |
testcase_15 | AC | 153 ms
54,744 KB |
testcase_16 | AC | 172 ms
54,944 KB |
testcase_17 | AC | 180 ms
54,932 KB |
testcase_18 | AC | 153 ms
52,628 KB |
testcase_19 | AC | 170 ms
54,672 KB |
testcase_20 | AC | 182 ms
54,788 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args)throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = 0; int r = 0; int e = 0; String hoge = br.readLine(); for(int i=0; i<hoge.length(); i++){ if(hoge.charAt(i) == 't'){ t++; }else if(hoge.charAt(i) == 'r'){ r++; }else if(hoge.charAt(i) == 'e'){ e++; } } System.out.println(Math.min(Math.min(t, r), e/2)); } }