結果

問題 No.279 木の数え上げ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-06 15:19:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 63,992 KB
最終ジャッジ日時 2024-09-25 16:37:01
合計ジャッジ時間 10,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,960 KB
testcase_01 AC 125 ms
54,684 KB
testcase_02 AC 124 ms
54,256 KB
testcase_03 AC 112 ms
52,696 KB
testcase_04 AC 124 ms
54,144 KB
testcase_05 AC 125 ms
53,828 KB
testcase_06 AC 124 ms
53,776 KB
testcase_07 AC 123 ms
54,020 KB
testcase_08 AC 128 ms
54,112 KB
testcase_09 AC 128 ms
54,192 KB
testcase_10 AC 403 ms
61,980 KB
testcase_11 AC 305 ms
58,052 KB
testcase_12 AC 387 ms
62,164 KB
testcase_13 AC 229 ms
57,536 KB
testcase_14 AC 356 ms
61,900 KB
testcase_15 AC 424 ms
63,992 KB
testcase_16 AC 367 ms
61,832 KB
testcase_17 AC 411 ms
61,980 KB
testcase_18 AC 351 ms
60,216 KB
testcase_19 AC 393 ms
62,100 KB
testcase_20 AC 413 ms
62,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

import java.util.Scanner;

public class No_279 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	String S = sc.nextLine();
	sc.close();
	String str;
	int t = 0;
	int r = 0;
	int e = 0;
	int tree = 0;
	int memory = 0;
	for(int i = 1; i <= S.length(); i++){
		str = S.substring(i-1,i);
		if(str.equals("t")){
			t++;
		}
		if(str.equals("r")){
			r++;
		}
		if(str.equals("e")){
			e++;
		}
	}
	memory = t;
	if(memory > r){
		memory = r;
	}
	if(memory > e/2){
		memory = e/2;
	}
	tree = memory;
	System.out.println(tree);
}
}
0