結果
問題 | No.279 木の数え上げ |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-05-02 22:01:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 181 ms / 2,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 2,048 ms |
コンパイル使用メモリ | 74,268 KB |
実行使用メモリ | 42,624 KB |
最終ジャッジ日時 | 2024-09-14 04:47:35 |
合計ジャッジ時間 | 5,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,776 KB |
testcase_01 | AC | 51 ms
36,892 KB |
testcase_02 | AC | 52 ms
36,900 KB |
testcase_03 | AC | 53 ms
36,504 KB |
testcase_04 | AC | 53 ms
36,836 KB |
testcase_05 | AC | 51 ms
36,812 KB |
testcase_06 | AC | 52 ms
36,704 KB |
testcase_07 | AC | 51 ms
36,772 KB |
testcase_08 | AC | 53 ms
36,788 KB |
testcase_09 | AC | 52 ms
36,620 KB |
testcase_10 | AC | 171 ms
42,580 KB |
testcase_11 | AC | 107 ms
38,980 KB |
testcase_12 | AC | 153 ms
41,620 KB |
testcase_13 | AC | 81 ms
38,008 KB |
testcase_14 | AC | 178 ms
42,572 KB |
testcase_15 | AC | 176 ms
42,424 KB |
testcase_16 | AC | 159 ms
42,276 KB |
testcase_17 | AC | 181 ms
42,624 KB |
testcase_18 | AC | 136 ms
39,908 KB |
testcase_19 | AC | 177 ms
42,312 KB |
testcase_20 | AC | 177 ms
42,596 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String S = reader.readLine(); int T = 0; int R = 0; int E = 0; for (int i = 0; i < S.length(); i++) { char s = S.charAt(i); if (s == 't') { T += 1; } else if (s == 'r') { R += 1; } else if (s == 'e') { E += 1; } } int treeCounter = 0; while ((T > 0) && (R > 0) && (E > 1)) { T -= 1; R -= 1; E -= 2; treeCounter += 1; } System.out.println(treeCounter); } }