結果
問題 | No.279 木の数え上げ |
ユーザー | koko_u |
提出日時 | 2015-10-04 23:21:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 266 ms / 2,000 ms |
コード長 | 808 bytes |
コンパイル時間 | 2,454 ms |
コンパイル使用メモリ | 86,084 KB |
実行使用メモリ | 57,600 KB |
最終ジャッジ日時 | 2024-10-14 15:15:14 |
合計ジャッジ時間 | 7,203 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,788 KB |
testcase_01 | AC | 127 ms
53,960 KB |
testcase_02 | AC | 130 ms
54,188 KB |
testcase_03 | AC | 124 ms
53,840 KB |
testcase_04 | AC | 128 ms
54,068 KB |
testcase_05 | AC | 127 ms
54,056 KB |
testcase_06 | AC | 129 ms
53,904 KB |
testcase_07 | AC | 128 ms
53,772 KB |
testcase_08 | AC | 127 ms
54,060 KB |
testcase_09 | AC | 121 ms
53,944 KB |
testcase_10 | AC | 256 ms
56,652 KB |
testcase_11 | AC | 188 ms
54,076 KB |
testcase_12 | AC | 252 ms
56,492 KB |
testcase_13 | AC | 161 ms
54,112 KB |
testcase_14 | AC | 266 ms
57,156 KB |
testcase_15 | AC | 257 ms
56,616 KB |
testcase_16 | AC | 251 ms
56,772 KB |
testcase_17 | AC | 261 ms
56,548 KB |
testcase_18 | AC | 234 ms
56,764 KB |
testcase_19 | AC | 258 ms
56,784 KB |
testcase_20 | AC | 259 ms
57,600 KB |
ソースコード
package jp.co.kokou.sample.no279; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { try (InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr)) { String line = br.readLine(); long tCount = charCount('t', line); long rCount = charCount('r', line); long eCount = charCount('e', line) / 2; long max = Math.min(Math.min(tCount, rCount), eCount); System.out.format("%d%n", max); } catch (IOException ex) { } } private static long charCount(char c, String seq) { return seq.chars().filter(i -> i == (int) c).count(); } }