結果

問題 No.279 木の数え上げ
ユーザー tsuchinagatsuchinaga
提出日時 2019-02-24 15:34:03
言語 Go
(1.22.1)
結果
AC  
実行時間 940 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 15,961 ms
コンパイル使用メモリ 227,032 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-02 07:38:26
合計ジャッジ時間 21,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 897 ms
9,600 KB
testcase_11 AC 196 ms
5,376 KB
testcase_12 AC 588 ms
5,632 KB
testcase_13 AC 105 ms
5,376 KB
testcase_14 AC 940 ms
9,856 KB
testcase_15 AC 778 ms
9,216 KB
testcase_16 AC 717 ms
8,960 KB
testcase_17 AC 878 ms
9,600 KB
testcase_18 AC 461 ms
6,528 KB
testcase_19 AC 864 ms
9,472 KB
testcase_20 AC 929 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	s := ""
	_, _ = fmt.Scan(&s)

	var tn, rn, en float64
	for _, r := range []rune(s) {
		switch string(r) {
		case "t":
			tn++
		case "r":
			rn++
		case "e":
			en++
		}
	}

	en = math.Floor(en / 2)
	fmt.Println(math.Min(math.Min(tn, rn), en))
}
0