結果

問題 No.279 木の数え上げ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-03 18:03:39
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 640 bytes
コンパイル時間 3,197 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 132,212 KB
最終ジャッジ日時 2024-10-08 06:25:17
合計ジャッジ時間 12,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,012 KB
testcase_01 AC 131 ms
41,232 KB
testcase_02 AC 124 ms
41,268 KB
testcase_03 AC 128 ms
41,068 KB
testcase_04 AC 121 ms
41,080 KB
testcase_05 AC 125 ms
41,024 KB
testcase_06 AC 124 ms
41,372 KB
testcase_07 AC 127 ms
41,080 KB
testcase_08 AC 128 ms
41,216 KB
testcase_09 AC 126 ms
40,960 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 335 ms
54,364 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

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();

    String[] strArray = str.split("");

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

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