結果

問題 No.279 木の数え上げ
ユーザー spacenautspacenaut
提出日時 2016-05-17 22:02:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 46,000 KB
最終ジャッジ日時 2024-10-14 15:29:28
合計ジャッジ時間 7,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,872 KB
testcase_01 AC 128 ms
41,064 KB
testcase_02 AC 130 ms
41,452 KB
testcase_03 AC 125 ms
41,080 KB
testcase_04 AC 126 ms
41,284 KB
testcase_05 AC 126 ms
40,884 KB
testcase_06 AC 127 ms
41,196 KB
testcase_07 AC 125 ms
40,972 KB
testcase_08 AC 130 ms
41,284 KB
testcase_09 AC 123 ms
41,084 KB
testcase_10 AC 290 ms
45,716 KB
testcase_11 AC 209 ms
42,948 KB
testcase_12 AC 263 ms
45,344 KB
testcase_13 AC 203 ms
42,076 KB
testcase_14 AC 317 ms
45,992 KB
testcase_15 AC 297 ms
45,520 KB
testcase_16 AC 254 ms
45,660 KB
testcase_17 AC 303 ms
46,000 KB
testcase_18 AC 248 ms
44,344 KB
testcase_19 AC 302 ms
45,940 KB
testcase_20 AC 299 ms
45,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0279{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int cnt_t = 0;
		int cnt_r = 0;
		int cnt_e = 0;
		int cnt = 0;
		for(int i = 0; i < s.length(); i++){
			switch(s.charAt(i)){
				case 't': cnt_t++; break;
				case 'r': cnt_r++; break;
				case 'e': cnt_e++; break;
			}
		}

		while(true){
			if(cnt_t > 0 && cnt_r > 0 && cnt_e > 1){
				cnt++;
				cnt_t--;
				cnt_r--;
				cnt_e -= 2;
			}else{
				break;
			}
		}
		System.out.println(cnt);
	}
}
0