結果

問題 No.279 木の数え上げ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-20 12:11:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 45,928 KB
最終ジャッジ日時 2024-10-02 04:06:09
合計ジャッジ時間 7,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,572 KB
testcase_01 AC 110 ms
39,960 KB
testcase_02 AC 117 ms
40,984 KB
testcase_03 AC 117 ms
40,692 KB
testcase_04 AC 115 ms
41,040 KB
testcase_05 AC 111 ms
40,068 KB
testcase_06 AC 116 ms
41,264 KB
testcase_07 AC 141 ms
41,400 KB
testcase_08 AC 119 ms
40,928 KB
testcase_09 AC 115 ms
40,804 KB
testcase_10 AC 260 ms
45,480 KB
testcase_11 AC 209 ms
42,532 KB
testcase_12 AC 236 ms
45,496 KB
testcase_13 AC 173 ms
42,392 KB
testcase_14 AC 272 ms
45,928 KB
testcase_15 AC 247 ms
45,212 KB
testcase_16 AC 246 ms
45,556 KB
testcase_17 AC 241 ms
45,512 KB
testcase_18 AC 254 ms
44,780 KB
testcase_19 AC 273 ms
45,748 KB
testcase_20 AC 272 ms
45,816 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 numt = 0;
    int numr = 0;
    int nume = 0;
    for(int i = 0; i < s.length(); i++) {
      if(s.charAt(i) == 't') numt++;
      if(s.charAt(i) == 'r') numr++;
      if(s.charAt(i) == 'e') nume++;
    }
    int ans = Math.min(numt, Math.min(numr, nume / 2));
    System.out.println(ans);
  }
}
0