結果

問題 No.279 木の数え上げ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-03 18:06:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 3,239 ms
コンパイル使用メモリ 75,276 KB
実行使用メモリ 61,348 KB
最終ジャッジ日時 2024-09-26 00:48:39
合計ジャッジ時間 8,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,020 KB
testcase_01 AC 120 ms
53,592 KB
testcase_02 AC 102 ms
52,860 KB
testcase_03 AC 117 ms
54,176 KB
testcase_04 AC 117 ms
54,132 KB
testcase_05 AC 115 ms
54,164 KB
testcase_06 AC 116 ms
54,104 KB
testcase_07 AC 118 ms
54,080 KB
testcase_08 AC 120 ms
54,140 KB
testcase_09 AC 116 ms
54,176 KB
testcase_10 AC 271 ms
61,324 KB
testcase_11 AC 188 ms
56,340 KB
testcase_12 AC 257 ms
61,088 KB
testcase_13 AC 185 ms
54,284 KB
testcase_14 AC 277 ms
60,956 KB
testcase_15 AC 250 ms
61,184 KB
testcase_16 AC 273 ms
60,960 KB
testcase_17 AC 281 ms
61,108 KB
testcase_18 AC 227 ms
57,120 KB
testcase_19 AC 277 ms
61,348 KB
testcase_20 AC 287 ms
61,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Exercise55{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();

    char[] strArray = str.toCharArray();

    int tCount = 0;
    int rCount = 0;
    int eeCount = 0;

    for(int i = 0; i < strArray.length; i++){
      if (strArray[i] == 't'){
        tCount++;
      }else if (strArray[i] == 'r'){
        rCount++;
      }else if (strArray[i] == 'e'){
        eeCount++;
      }
    }
    eeCount /= 2;
    int min = Math.min(tCount, Math.min(rCount, eeCount));
    System.out.println(min);
  }
}
0