結果

問題 No.279 木の数え上げ
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-24 02:23:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 49,028 KB
最終ジャッジ日時 2024-10-14 15:24:16
合計ジャッジ時間 6,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,836 KB
testcase_01 AC 110 ms
41,492 KB
testcase_02 AC 114 ms
41,008 KB
testcase_03 AC 116 ms
41,236 KB
testcase_04 AC 121 ms
41,016 KB
testcase_05 AC 108 ms
40,936 KB
testcase_06 AC 110 ms
40,808 KB
testcase_07 AC 110 ms
41,056 KB
testcase_08 AC 96 ms
39,704 KB
testcase_09 AC 95 ms
40,108 KB
testcase_10 AC 250 ms
48,872 KB
testcase_11 AC 189 ms
42,896 KB
testcase_12 AC 225 ms
48,380 KB
testcase_13 AC 171 ms
41,972 KB
testcase_14 AC 248 ms
49,008 KB
testcase_15 AC 249 ms
48,768 KB
testcase_16 AC 234 ms
48,560 KB
testcase_17 AC 273 ms
49,028 KB
testcase_18 AC 219 ms
46,500 KB
testcase_19 AC 272 ms
48,728 KB
testcase_20 AC 264 ms
48,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		String S = sc.next();
		
		char[] charS = S.toCharArray();
		
		int[] flag = new int[]{0, 0, 0};
		
		for(int i = 0; i < charS.length; i++) {
			if(charS[i] == 't') {
				flag[0]+=2;
			} else if(charS[i] == 'r') {
				flag[1]+=2;
			} else if(charS[i] == 'e') {
				flag[2]++;
			}
		}
		
		int min = Integer.MAX_VALUE;;
		
		for(int i = 0; i < 3; i++) {
			if(flag[i] < min) {
				min = flag[i];
			}
		}
		
		System.out.println(min / 2);
	}
}
0