結果

問題 No.2997 Making YuzuKizu
ユーザー ID 21712ID 21712
提出日時 2024-12-22 05:06:21
言語 Go
(1.22.1)
結果
AC  
実行時間 1,078 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 14,347 ms
コンパイル使用メモリ 235,132 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-12-22 05:06:42
合計ジャッジ時間 19,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1,056 ms
5,888 KB
testcase_02 AC 1,025 ms
5,888 KB
testcase_03 AC 1,078 ms
5,888 KB
testcase_04 AC 9 ms
5,248 KB
testcase_05 AC 75 ms
5,248 KB
testcase_06 AC 44 ms
5,248 KB
testcase_07 AC 67 ms
5,248 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 149 ms
5,248 KB
testcase_10 AC 85 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var s string
	Scan(&s)
	c:=f(s)
	s=Sprint(g(c,f("yukari")))
	s+=Sprint(" ",g(c,f("akari")))
	s+=Sprint(" ",g(c,f("yuzukizu")))
	Println(s)
}

func g(a,b map[rune]int)int {
	y:=int(1e6)
	for r,x:=range b {
		t:=a[r]/x
		if t<y {
			y=t
		}
	}
	return y
}

func f(s string) map[rune]int {
	c:=map[rune]int{}
	for _,r:=range s {
		c[r]++
	}
	return c
}
0