結果

問題 No.1131 Deviation Score
ユーザー pluto77pluto77
提出日時 2020-07-28 11:30:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 15,324 KB
最終ジャッジ日時 2023-09-10 12:19:46
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
9,652 KB
testcase_01 AC 18 ms
7,916 KB
testcase_02 AC 114 ms
14,228 KB
testcase_03 AC 60 ms
10,972 KB
testcase_04 AC 103 ms
13,800 KB
testcase_05 AC 49 ms
10,144 KB
testcase_06 AC 110 ms
14,096 KB
testcase_07 AC 61 ms
10,944 KB
testcase_08 AC 99 ms
13,628 KB
testcase_09 AC 46 ms
10,080 KB
testcase_10 AC 94 ms
13,284 KB
testcase_11 AC 97 ms
13,536 KB
testcase_12 AC 88 ms
12,888 KB
testcase_13 AC 110 ms
14,268 KB
testcase_14 AC 35 ms
9,380 KB
testcase_15 AC 34 ms
9,308 KB
testcase_16 AC 102 ms
13,600 KB
testcase_17 AC 50 ms
10,384 KB
testcase_18 AC 127 ms
15,324 KB
testcase_19 AC 15 ms
7,948 KB
testcase_20 AC 15 ms
7,860 KB
testcase_21 AC 15 ms
7,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1131
n=int(input())
x=list(map(int,input().split()))
a=sum(x)/n
for i in range(n):
 y=50.0-(a-x[i])/2.0
 print(int(y))
 
0