結果

問題 No.609 Noelちゃんと星々
ユーザー rnazmornazmo
提出日時 2019-12-07 20:01:44
言語 Go
(1.22.1)
結果
AC  
実行時間 1,153 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 14,869 ms
コンパイル使用メモリ 238,544 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-07 20:16:03
合計ジャッジ時間 35,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 840 ms
6,016 KB
testcase_01 AC 430 ms
5,248 KB
testcase_02 AC 292 ms
5,376 KB
testcase_03 AC 396 ms
5,376 KB
testcase_04 AC 197 ms
5,376 KB
testcase_05 AC 1,039 ms
6,016 KB
testcase_06 AC 904 ms
6,016 KB
testcase_07 AC 529 ms
5,376 KB
testcase_08 AC 108 ms
5,376 KB
testcase_09 AC 344 ms
5,376 KB
testcase_10 AC 674 ms
6,016 KB
testcase_11 AC 619 ms
5,888 KB
testcase_12 AC 783 ms
6,016 KB
testcase_13 AC 142 ms
5,376 KB
testcase_14 AC 59 ms
5,376 KB
testcase_15 AC 922 ms
6,016 KB
testcase_16 AC 1,087 ms
6,144 KB
testcase_17 AC 850 ms
6,016 KB
testcase_18 AC 288 ms
5,376 KB
testcase_19 AC 914 ms
6,016 KB
testcase_20 AC 1,123 ms
6,144 KB
testcase_21 AC 1,120 ms
6,144 KB
testcase_22 AC 1,116 ms
6,144 KB
testcase_23 AC 1,153 ms
6,144 KB
testcase_24 AC 1,121 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/609

package main

import (
	"fmt"
	"sort"
)

func diff(a, b int) int {
	if a > b {
		return a - b
	}
	return b - a
}

func main() {
	var n int
	fmt.Scan(&n)
	ys := make([]int, n)
	for i := 0; i < n; i++ {
		fmt.Scan(&ys[i])
	}

	sort.Ints(ys)
	med := ys[n/2]

	sum := 0
	for _, y := range ys {
		sum += diff(med, y)
	}
	fmt.Println(sum)
}
0