結果

問題 No.279 木の数え上げ
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 15:33:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 49,216 KB
最終ジャッジ日時 2024-10-13 04:12:15
合計ジャッジ時間 6,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,356 KB
testcase_01 AC 117 ms
41,348 KB
testcase_02 AC 120 ms
41,120 KB
testcase_03 AC 119 ms
41,284 KB
testcase_04 AC 118 ms
41,408 KB
testcase_05 AC 105 ms
41,216 KB
testcase_06 AC 108 ms
41,308 KB
testcase_07 AC 119 ms
41,872 KB
testcase_08 AC 114 ms
41,236 KB
testcase_09 AC 112 ms
41,128 KB
testcase_10 AC 255 ms
48,840 KB
testcase_11 AC 192 ms
43,144 KB
testcase_12 AC 267 ms
48,332 KB
testcase_13 AC 185 ms
42,508 KB
testcase_14 AC 280 ms
49,212 KB
testcase_15 AC 250 ms
48,324 KB
testcase_16 AC 257 ms
48,748 KB
testcase_17 AC 271 ms
49,216 KB
testcase_18 AC 245 ms
46,432 KB
testcase_19 AC 283 ms
48,916 KB
testcase_20 AC 268 ms
49,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		int countt = 0;
		int countr = 0;
		int counte = 0;
		
		char t='t';
		char r='r';
		char e='e';
		
		for(char x: str.toCharArray()){
			if(x == t){
				countt++;
			}else if(x == r){
				countr++;
			}else if(x == e){
				counte++;
			}
		}
		
		int min =countt;
		if(countt > countr){
			min = countr;
		}
		if(min > counte/2){
			min = counte/2;
		}
		
		System.out.println(min);
	}
}
0