結果

問題 No.279 木の数え上げ
ユーザー r.suzukir.suzuki
提出日時 2015-12-10 00:26:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 49,292 KB
最終ジャッジ日時 2024-09-26 05:08:36
合計ジャッジ時間 8,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,196 KB
testcase_01 AC 105 ms
41,204 KB
testcase_02 AC 121 ms
41,404 KB
testcase_03 AC 120 ms
41,232 KB
testcase_04 AC 116 ms
41,448 KB
testcase_05 AC 104 ms
41,264 KB
testcase_06 AC 118 ms
41,272 KB
testcase_07 AC 117 ms
41,300 KB
testcase_08 AC 106 ms
41,160 KB
testcase_09 AC 115 ms
40,884 KB
testcase_10 AC 288 ms
49,116 KB
testcase_11 AC 206 ms
43,036 KB
testcase_12 AC 258 ms
48,736 KB
testcase_13 AC 180 ms
42,304 KB
testcase_14 AC 286 ms
49,240 KB
testcase_15 AC 277 ms
48,964 KB
testcase_16 AC 264 ms
48,884 KB
testcase_17 AC 293 ms
49,100 KB
testcase_18 AC 234 ms
47,108 KB
testcase_19 AC 288 ms
49,112 KB
testcase_20 AC 288 ms
49,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Tree{
	private int t ;
	private int r ;
	private int e ;
	private int treeCount;
	
	public Tree(int a,int b,int c){
		this.t = a;
		this.r = b;
		this.e = c;
	}
	
	public void makeTree(){
		while(true){
			this.t -= 1;
			this.r -= 1;
			this.e -= 2;
			if(this.t >= 0 && this.r >= 0 && this.e >= 0){
				treeCount++;
			}
			else{
				break;
			}
		}
	}
	public void showTreeCount(){
		System.out.println(this.treeCount);
	}
}

public class No_279 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String sample = sc.next();
		char[] pieceOfSample = sample.toCharArray();
		int tCount = 0;
		int rCount = 0;
		int eCount = 0;
		
		for(char c:pieceOfSample){
			switch(c){
			case 't':tCount++;break;
			case 'r':rCount++;break;
			case 'e':eCount++;break;
				
			}
		}
		Tree tree = new Tree(tCount,rCount,eCount);
		tree.makeTree();
		tree.showTreeCount();
	}

}
0