結果

問題 No.279 木の数え上げ
ユーザー ぴろずぴろず
提出日時 2015-09-18 22:22:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 4,513 ms
コンパイル使用メモリ 84,260 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-10-14 15:06:13
合計ジャッジ時間 7,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,184 KB
testcase_01 AC 121 ms
54,028 KB
testcase_02 AC 104 ms
52,712 KB
testcase_03 AC 102 ms
52,812 KB
testcase_04 AC 103 ms
52,608 KB
testcase_05 AC 105 ms
52,612 KB
testcase_06 AC 118 ms
54,184 KB
testcase_07 AC 114 ms
54,140 KB
testcase_08 AC 104 ms
52,844 KB
testcase_09 AC 106 ms
52,628 KB
testcase_10 AC 280 ms
56,680 KB
testcase_11 AC 188 ms
54,400 KB
testcase_12 AC 230 ms
57,048 KB
testcase_13 AC 192 ms
54,136 KB
testcase_14 AC 273 ms
57,036 KB
testcase_15 AC 252 ms
56,960 KB
testcase_16 AC 253 ms
56,808 KB
testcase_17 AC 275 ms
57,128 KB
testcase_18 AC 235 ms
56,608 KB
testcase_19 AC 268 ms
57,176 KB
testcase_20 AC 274 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no279;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int[] count = new int[256];
		for(int i=0;i<s.length();i++) {
			count[s.charAt(i)]++;
		}
		int ans = count['t'];
		ans = Math.min(ans,count['r']);
		ans = Math.min(ans, count['e']/2);
		System.out.println(ans);
	}
}
0