結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 878 ms
6,016 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 658 ms
6,016 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 145 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,068 ms
6,144 KB
testcase_17 WA -
testcase_18 AC 286 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 1,096 ms
6,144 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,108 ms
6,144 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"log"
)

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
		}
	}
	log.Println(lb)
	log.Println(cal(lb + 1))
	log.Println(cal(5), cal(6), cal(7))
	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