結果

問題 No.279 木の数え上げ
ユーザー kat0rikkat0rik
提出日時 2020-01-12 18:36:42
言語 Go
(1.22.1)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 13,256 ms
コンパイル使用メモリ 224,000 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-11-30 00:00:13
合計ジャッジ時間 21,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 849 ms
5,888 KB
testcase_11 AC 182 ms
5,248 KB
testcase_12 AC 582 ms
5,632 KB
testcase_13 AC 105 ms
5,248 KB
testcase_14 AC 923 ms
5,888 KB
testcase_15 AC 749 ms
5,888 KB
testcase_16 AC 668 ms
5,888 KB
testcase_17 AC 849 ms
5,888 KB
testcase_18 AC 439 ms
5,248 KB
testcase_19 AC 826 ms
5,888 KB
testcase_20 AC 892 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var S string
	fmt.Scan(&S)
	set := make(map[byte]int, 0)
	for i := 0; i < len(S); i++ {
		if S[i] == 't' || S[i] == 'r' || S[i] == 'e' {
			set[S[i]]++
		}
	}
	fmt.Println(min(set['t'], min(set['r'], set['e']/2)))
}
func min(a, b int) int {
	if a < b {
		return a
	}
	return b
}
0