結果

問題 No.279 木の数え上げ
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:37:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 51,244 KB
最終ジャッジ日時 2024-11-15 22:42:47
合計ジャッジ時間 7,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,244 KB
testcase_01 AC 113 ms
39,956 KB
testcase_02 AC 128 ms
41,024 KB
testcase_03 AC 117 ms
40,004 KB
testcase_04 AC 131 ms
41,348 KB
testcase_05 AC 113 ms
40,060 KB
testcase_06 AC 126 ms
40,996 KB
testcase_07 AC 128 ms
40,944 KB
testcase_08 AC 125 ms
41,284 KB
testcase_09 AC 127 ms
41,032 KB
testcase_10 AC 341 ms
50,504 KB
testcase_11 AC 240 ms
43,956 KB
testcase_12 AC 336 ms
50,456 KB
testcase_13 AC 211 ms
43,048 KB
testcase_14 AC 301 ms
50,912 KB
testcase_15 AC 336 ms
51,244 KB
testcase_16 AC 329 ms
50,948 KB
testcase_17 AC 321 ms
50,552 KB
testcase_18 AC 282 ms
47,888 KB
testcase_19 AC 344 ms
50,732 KB
testcase_20 AC 327 ms
51,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int t=0,r=0,e=0;
		char are[]=sc.nextLine().toCharArray();
		for(char element:are){
			switch(element){
			case't':t++;break;
			case'r':r++;break;
			case'e':e++;break;
			}
		}
		int min=Math.min(Math.min(t,r),e/2);
		System.out.println(min);
	}
}
0