結果

問題 No.1131 Deviation Score
ユーザー StarMatyanStarMatyan
提出日時 2020-11-28 21:57:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,160 KB
最終ジャッジ日時 2024-06-28 03:54:51
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 199 ms
15,484 KB
testcase_03 AC 106 ms
13,056 KB
testcase_04 AC 183 ms
15,088 KB
testcase_05 AC 87 ms
12,544 KB
testcase_06 AC 194 ms
15,612 KB
testcase_07 AC 109 ms
13,184 KB
testcase_08 AC 176 ms
15,072 KB
testcase_09 AC 84 ms
12,288 KB
testcase_10 AC 172 ms
14,936 KB
testcase_11 AC 172 ms
14,944 KB
testcase_12 AC 152 ms
14,188 KB
testcase_13 AC 189 ms
15,480 KB
testcase_14 AC 63 ms
11,776 KB
testcase_15 AC 63 ms
11,776 KB
testcase_16 AC 178 ms
15,072 KB
testcase_17 AC 92 ms
12,544 KB
testcase_18 AC 220 ms
16,160 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n_num = int(input())
count_d =input()
count_list = count_d.split(" ")
sum = 0

for counter in range(n_num):
	sum = sum +int(count_list[counter])

averager = sum/n_num

for outputer in range(n_num):
	result =int(50 - (averager-int(count_list[outputer]))/2)
	print(result)
0