結果

問題 No.279 木の数え上げ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:24:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 55,432 KB
最終ジャッジ日時 2024-11-15 18:46:03
合計ジャッジ時間 10,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,016 KB
testcase_01 AC 134 ms
41,012 KB
testcase_02 AC 135 ms
41,200 KB
testcase_03 AC 132 ms
41,328 KB
testcase_04 AC 132 ms
41,072 KB
testcase_05 AC 135 ms
41,156 KB
testcase_06 AC 131 ms
41,160 KB
testcase_07 AC 119 ms
40,264 KB
testcase_08 AC 135 ms
41,124 KB
testcase_09 AC 132 ms
40,876 KB
testcase_10 AC 449 ms
54,204 KB
testcase_11 AC 268 ms
47,388 KB
testcase_12 AC 384 ms
53,728 KB
testcase_13 AC 232 ms
43,936 KB
testcase_14 AC 432 ms
54,508 KB
testcase_15 AC 401 ms
53,308 KB
testcase_16 AC 382 ms
53,476 KB
testcase_17 AC 468 ms
55,432 KB
testcase_18 AC 366 ms
50,860 KB
testcase_19 AC 385 ms
55,020 KB
testcase_20 AC 454 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next(), t, r, e;
		int ans = s.length()/4;
		t = s.replaceAll("t", "");
		r = s.replaceAll("r", "");
		e = s.replaceAll("e", "");
		ans = Math.min(ans, s.length()-t.length());
		ans = Math.min(ans, s.length()-r.length());
		ans = Math.min(ans, (s.length()-e.length())/2);
		System.out.println(ans);

		sc.close();
	}
}
0