結果

問題 No.1131 Deviation Score
ユーザー takakintakakin
提出日時 2020-08-24 23:06:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 15,144 KB
最終ジャッジ日時 2023-09-10 12:30:09
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
9,696 KB
testcase_01 AC 17 ms
7,888 KB
testcase_02 AC 109 ms
14,248 KB
testcase_03 AC 60 ms
10,792 KB
testcase_04 AC 104 ms
13,736 KB
testcase_05 AC 48 ms
10,172 KB
testcase_06 AC 108 ms
14,244 KB
testcase_07 AC 61 ms
10,928 KB
testcase_08 AC 97 ms
13,548 KB
testcase_09 AC 45 ms
9,968 KB
testcase_10 AC 94 ms
13,360 KB
testcase_11 AC 97 ms
13,468 KB
testcase_12 AC 87 ms
12,792 KB
testcase_13 AC 110 ms
14,052 KB
testcase_14 AC 35 ms
9,296 KB
testcase_15 AC 34 ms
9,364 KB
testcase_16 AC 101 ms
13,660 KB
testcase_17 AC 48 ms
10,268 KB
testcase_18 AC 121 ms
15,144 KB
testcase_19 AC 17 ms
7,896 KB
testcase_20 AC 16 ms
7,892 KB
testcase_21 AC 16 ms
7,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
X=[int(i) for i in input().split()]
a=sum(X)/n
for x in X:
	print(int(50-(a-x)/2))
0