結果

問題 No.609 Noelちゃんと星々
ユーザー fmhrfmhr
提出日時 2017-12-09 00:32:00
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 11,667 ms
コンパイル使用メモリ 222,236 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2024-05-07 06:20:39
合計ジャッジ時間 31,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 920 ms
7,832 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 679 ms
7,836 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 146 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,108 ms
7,960 KB
testcase_17 WA -
testcase_18 AC 289 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 1,132 ms
7,956 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,142 ms
7,956 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

var N int
var Y []int

func main() {
	fmt.Scan(&N)
	Y = make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scan(&Y[i])
	}
	maxY := max(Y)
	lb := -1
	ub := maxY
	for ub-lb > 1 {
		mid := (ub + lb) / 2
		if cal(lb) < cal(ub) {
			ub = mid
		} else {
			lb = mid
		}
	}
	fmt.Println(cal(lb + 1))
}

func cal(m int) int {
	r := 0
	for i := range Y {
		r += abs(m - Y[i])
	}
	return r
}

func max(n []int) int {
	r := n[0]
	for i := range n {
		if r < n[i] {
			r = n[i]
		}
	}
	return r
}

func abs(a int) int {
	if a > 0 {
		return a
	}
	return -a
}
0