結果

問題 No.279 木の数え上げ
ユーザー omc-testomc-test
提出日時 2016-08-05 09:16:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 6,677 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 49,424 KB
最終ジャッジ日時 2024-09-26 06:13:34
合計ジャッジ時間 11,861 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,556 KB
testcase_01 AC 134 ms
41,384 KB
testcase_02 AC 132 ms
41,632 KB
testcase_03 AC 132 ms
41,568 KB
testcase_04 AC 129 ms
41,416 KB
testcase_05 AC 131 ms
41,332 KB
testcase_06 AC 128 ms
41,556 KB
testcase_07 AC 139 ms
41,456 KB
testcase_08 AC 133 ms
41,744 KB
testcase_09 AC 130 ms
41,336 KB
testcase_10 AC 311 ms
49,296 KB
testcase_11 AC 221 ms
42,992 KB
testcase_12 AC 275 ms
48,496 KB
testcase_13 AC 207 ms
42,512 KB
testcase_14 AC 313 ms
49,420 KB
testcase_15 AC 286 ms
49,068 KB
testcase_16 AC 295 ms
48,564 KB
testcase_17 AC 305 ms
49,424 KB
testcase_18 AC 255 ms
46,160 KB
testcase_19 AC 313 ms
49,416 KB
testcase_20 AC 312 ms
49,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class No0279 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char c[] = sc.next().toCharArray();
		int tCount = 0;
		int rCount = 0;
		int eCount = 0;
		for(int i=0; i<c.length; i++){
			switch(c[i]){
			case 't':
				tCount++;
				break;
			case 'r':
				rCount++;
				break;
			case 'e':
				eCount++;
				break;
			}
		}
		eCount = eCount / 2;
		int ans[] = {tCount, rCount, eCount};
		Arrays.sort(ans);
		System.out.println(ans[0]);
	}
}
0