結果

問題 No.279 木の数え上げ
ユーザー fmhrfmhr
提出日時 2015-09-18 22:28:21
言語 Go
(1.22.1)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 13,145 ms
コンパイル使用メモリ 226,336 KB
実行使用メモリ 7,768 KB
最終ジャッジ日時 2024-10-14 15:08:13
合計ジャッジ時間 21,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 828 ms
7,768 KB
testcase_11 AC 182 ms
6,816 KB
testcase_12 AC 585 ms
7,640 KB
testcase_13 AC 104 ms
6,816 KB
testcase_14 AC 925 ms
7,764 KB
testcase_15 AC 759 ms
7,764 KB
testcase_16 AC 680 ms
7,768 KB
testcase_17 AC 845 ms
7,768 KB
testcase_18 AC 441 ms
7,640 KB
testcase_19 AC 823 ms
7,768 KB
testcase_20 AC 887 ms
7,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	solve279()
}

func solve279(){
	var S string
	fmt.Scan(&S)
	var t, r, e int
	for i:=0; i<len(S); i++ {
	    if string(S[i])=="t"{
			t++
		}else if string(S[i])=="r"{
			r++
		}else if string(S[i])=="e"{
			e++
		}
	}
	fmt.Println(min(min(t, r), e/2))
}

func min(a, b int) int {
	if a < b {
		a, b = b, a
	}
	return b
}
0