結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー tyochiaityochiai
提出日時 2015-02-07 19:02:45
言語 Go
(1.22.1)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 10,894 ms
コンパイル使用メモリ 237,756 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-06-26 07:27:24
合計ジャッジ時間 13,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,248 KB
testcase_01 AC 245 ms
6,016 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 246 ms
6,016 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 146 ms
5,376 KB
testcase_15 AC 61 ms
5,376 KB
testcase_16 AC 188 ms
5,760 KB
testcase_17 AC 56 ms
5,376 KB
testcase_18 AC 182 ms
6,016 KB
testcase_19 AC 133 ms
5,376 KB
testcase_20 AC 248 ms
6,016 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 87 ms
5,376 KB
testcase_23 AC 224 ms
6,016 KB
testcase_24 AC 240 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func resolve(N int, L []int) int {
	ret := L[0]
	tmp := L[0]
	max := 0
	cnt := 1
	for i := 1; i < N; i++ {
		if L[i] == tmp {
			cnt += 1
			continue
		}
		if cnt >= max {
			max = cnt
			ret = tmp
		}
		tmp = L[i]
		cnt = 1
	}
	if cnt >= max {
		return L[N-1]
	}
	return ret
}

func main() {
	var N int
	fmt.Scanf("%d\n", &N)
	L := make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scanf("%d", &L[i])
	}
	sort.Ints(L)
	fmt.Println(resolve(N, L))
}
0