結果

問題 No.1131 Deviation Score
ユーザー kat0rikkat0rik
提出日時 2020-08-15 18:13:22
言語 Go
(1.22.1)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 13,865 ms
コンパイル使用メモリ 221,260 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-06-28 03:47:52
合計ジャッジ時間 19,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 397 ms
6,016 KB
testcase_03 AC 185 ms
5,376 KB
testcase_04 AC 362 ms
6,016 KB
testcase_05 AC 135 ms
5,376 KB
testcase_06 AC 388 ms
6,016 KB
testcase_07 AC 188 ms
5,376 KB
testcase_08 AC 344 ms
6,016 KB
testcase_09 AC 126 ms
5,376 KB
testcase_10 AC 331 ms
5,888 KB
testcase_11 AC 341 ms
6,016 KB
testcase_12 AC 300 ms
5,376 KB
testcase_13 AC 389 ms
6,016 KB
testcase_14 AC 82 ms
5,376 KB
testcase_15 AC 80 ms
5,376 KB
testcase_16 AC 355 ms
5,888 KB
testcase_17 AC 141 ms
5,376 KB
testcase_18 AC 457 ms
6,016 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var n, sum int
	fmt.Scan(&n)
	x := make([]int, n)
	for i := range x {
		fmt.Scan(&x[i])
		sum += x[i]
	}
	for i := range x {
		fmt.Println((100*n - sum + n*x[i]) / (n * 2))
	}
}
0