結果

問題 No.279 木の数え上げ
ユーザー mits58mits58
提出日時 2016-06-05 17:27:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 45,740 KB
最終ジャッジ日時 2024-10-14 15:29:59
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,380 KB
testcase_01 AC 109 ms
40,856 KB
testcase_02 AC 116 ms
41,052 KB
testcase_03 AC 111 ms
40,996 KB
testcase_04 AC 116 ms
41,128 KB
testcase_05 AC 103 ms
40,300 KB
testcase_06 AC 101 ms
39,912 KB
testcase_07 AC 108 ms
40,284 KB
testcase_08 AC 110 ms
41,016 KB
testcase_09 AC 108 ms
40,936 KB
testcase_10 AC 238 ms
45,656 KB
testcase_11 AC 192 ms
42,544 KB
testcase_12 AC 244 ms
45,496 KB
testcase_13 AC 171 ms
42,084 KB
testcase_14 AC 242 ms
45,740 KB
testcase_15 AC 247 ms
45,264 KB
testcase_16 AC 236 ms
45,344 KB
testcase_17 AC 241 ms
45,684 KB
testcase_18 AC 224 ms
44,256 KB
testcase_19 AC 273 ms
45,500 KB
testcase_20 AC 249 ms
45,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			char[] a=new char['z'-'a'+1];
			String str=sc.next();
			for(int i=0;i<str.length();i++) a[str.charAt(i)-'a']++;
			int res=Math.min(Math.min(a['t'-'a'],a['r'-'a']), a['e'-'a']/2);
			System.out.println(res);
		}
	}
}
0