結果

問題 No.279 木の数え上げ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-06 14:50:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 121,980 KB
最終ジャッジ日時 2023-10-19 16:07:22
合計ジャッジ時間 11,679 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 WA -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

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 = new String[S.length()];
	int t = 0;
	int r = 0;
	int e = 0;
	int tree = 0;
	for(int i = 1; i <=S.length(); i++){
		str[i-1] = S.substring(i-1, i);
	}
	for(int i = 0; i < S.length(); i++){
		if(str[i].equals("t")){
			t++;
		}
		if(str[i].equals("r")){
			r++;
		}
		if(str[i].equals("e")){
			e++;
		}
	}
	if(t==r&&t==e/2){
		tree = t;
	}
	System.out.println(tree);
}
}
0