結果

問題 No.279 木の数え上げ
ユーザー tentententen
提出日時 2020-11-11 09:07:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 48,964 KB
最終ジャッジ日時 2024-07-22 18:20:03
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,144 KB
testcase_01 AC 105 ms
41,072 KB
testcase_02 AC 96 ms
41,276 KB
testcase_03 AC 107 ms
41,428 KB
testcase_04 AC 105 ms
41,056 KB
testcase_05 AC 110 ms
41,140 KB
testcase_06 AC 106 ms
40,812 KB
testcase_07 AC 113 ms
41,296 KB
testcase_08 AC 112 ms
41,308 KB
testcase_09 AC 97 ms
41,040 KB
testcase_10 AC 246 ms
48,720 KB
testcase_11 AC 179 ms
42,812 KB
testcase_12 AC 232 ms
48,204 KB
testcase_13 AC 176 ms
42,204 KB
testcase_14 AC 264 ms
48,948 KB
testcase_15 AC 240 ms
48,120 KB
testcase_16 AC 232 ms
48,716 KB
testcase_17 AC 265 ms
48,840 KB
testcase_18 AC 211 ms
46,448 KB
testcase_19 AC 236 ms
48,648 KB
testcase_20 AC 272 ms
48,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] counts = new int[26];
        for (char c : sc.next().toCharArray()) {
            counts[c - 'a']++;
        }
        int ans = Math.min(Math.min(counts['t' - 'a'], counts['r' - 'a']), counts['e' - 'a'] / 2);
        System.out.println(ans);
    }
}
0