結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | tsuchinaga |
提出日時 | 2019-04-02 09:36:44 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 14,091 ms |
コンパイル使用メモリ | 221,952 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-05-06 12:59:06 |
合計ジャッジ時間 | 14,413 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func main() { sc := bufio.NewScanner(os.Stdin) sc.Split(bufio.ScanWords) sc.Scan() t, _ := strconv.Atoi(sc.Text()) for i := 0; i < t; i++ { sc.Scan() n, _ := strconv.Atoi(sc.Text()) ls := make([]int, 0) nums := make(map[int]int, 0) for j := 0; j < n; j++ { sc.Scan() l, _ := strconv.Atoi(sc.Text()) if _, ok := nums[l]; !ok { ls = append(ls, l) } nums[l]++ } // lsを多い順に並び替え sort.Slice(ls, func(i, j int) bool { return (nums[ls[i]] > nums[ls[j]]) || (nums[ls[i]] == nums[ls[j]] && ls[i] < ls[j]) }) // fmt.Println(ls, nums) // 多いのから順に3つとって、なくなるまで繰り返す cnt := 0 sets := 0 for i := 0; i < len(ls); i++ { if nums[ls[i]] > 0 { sets++ nums[ls[i]]-- if sets == 3 { cnt++ sets = 0 i = -1 } } } fmt.Println(cnt) } }