結果

問題 No.279 木の数え上げ
ユーザー tom_tom_tomtom_tom_tom
提出日時 2015-11-10 17:01:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 3,946 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 45,704 KB
最終ジャッジ日時 2024-10-14 15:20:04
合計ジャッジ時間 8,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,976 KB
testcase_01 AC 121 ms
41,136 KB
testcase_02 AC 121 ms
40,928 KB
testcase_03 AC 109 ms
40,736 KB
testcase_04 AC 109 ms
40,912 KB
testcase_05 AC 113 ms
40,940 KB
testcase_06 AC 106 ms
41,020 KB
testcase_07 AC 114 ms
41,176 KB
testcase_08 AC 101 ms
39,912 KB
testcase_09 AC 98 ms
40,016 KB
testcase_10 AC 249 ms
45,600 KB
testcase_11 AC 190 ms
42,272 KB
testcase_12 AC 221 ms
45,276 KB
testcase_13 AC 177 ms
42,188 KB
testcase_14 AC 273 ms
45,408 KB
testcase_15 AC 274 ms
45,588 KB
testcase_16 AC 254 ms
45,144 KB
testcase_17 AC 255 ms
45,576 KB
testcase_18 AC 248 ms
44,004 KB
testcase_19 AC 271 ms
45,704 KB
testcase_20 AC 277 ms
45,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.util.Scanner;

/**
 * http://yukicoder.me/problems/531
 * star1
 */
public class YukiCoder279 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();

        int t = 0, r = 0, e = 0;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);
            if (c == 't') {
                t++;
            } else if (c == 'r') {
                r++;
            } else if (c == 'e') {
                e++;
            }
        }
        int num = Math.min(Math.min(t, r), e / 2);
        System.out.println(num);
    }
}
/*

takahashikunlovesyukicoder
1

treapisnotki
0

eerteerteerteert
4
*/
0