結果

問題 No.1131 Deviation Score
ユーザー ゆうPゆうP
提出日時 2024-05-17 23:06:36
言語 Go
(1.22.1)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 11,073 ms
コンパイル使用メモリ 240,584 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2024-05-17 23:06:56
合計ジャッジ時間 18,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
6,816 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 403 ms
7,832 KB
testcase_03 AC 187 ms
6,940 KB
testcase_04 AC 369 ms
7,836 KB
testcase_05 AC 135 ms
6,944 KB
testcase_06 AC 396 ms
7,832 KB
testcase_07 AC 198 ms
6,944 KB
testcase_08 AC 352 ms
7,836 KB
testcase_09 AC 129 ms
6,940 KB
testcase_10 AC 342 ms
7,836 KB
testcase_11 AC 353 ms
7,832 KB
testcase_12 AC 302 ms
7,708 KB
testcase_13 AC 405 ms
7,832 KB
testcase_14 AC 83 ms
6,940 KB
testcase_15 AC 80 ms
6,940 KB
testcase_16 AC 365 ms
7,832 KB
testcase_17 AC 143 ms
6,944 KB
testcase_18 AC 456 ms
7,828 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.1131 Deviation Score
package main

import (
	"fmt"
)

func main() {
	var n int
	fmt.Scan(&n)

	var x = make([]float64, n)
	for i := 0; i < n; i++ {
		fmt.Scan(&x[i])
	}
	sum := 0.0
	for j := 0; j < n; j++ {
		sum += float64(x[j])
	}
	avg := sum / float64(len(x))
	for k := 0; k < n; k++ {
		fmt.Println(int(50 - ((avg - x[k]) / 2)))
	}
}
0