結果

問題 No.1131 Deviation Score
ユーザー machoniumpmachoniump
提出日時 2020-12-30 16:35:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 10,520 KB
実行使用メモリ 15,140 KB
最終ジャッジ日時 2023-09-10 12:35:30
合計ジャッジ時間 2,959 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
9,800 KB
testcase_01 AC 17 ms
8,348 KB
testcase_02 AC 113 ms
14,216 KB
testcase_03 AC 60 ms
11,040 KB
testcase_04 AC 103 ms
13,928 KB
testcase_05 AC 47 ms
10,132 KB
testcase_06 AC 112 ms
14,236 KB
testcase_07 AC 61 ms
10,920 KB
testcase_08 AC 99 ms
13,616 KB
testcase_09 AC 47 ms
10,192 KB
testcase_10 AC 98 ms
13,376 KB
testcase_11 AC 101 ms
13,504 KB
testcase_12 AC 89 ms
12,908 KB
testcase_13 AC 112 ms
14,228 KB
testcase_14 AC 34 ms
9,400 KB
testcase_15 AC 35 ms
9,252 KB
testcase_16 AC 103 ms
13,740 KB
testcase_17 AC 50 ms
10,248 KB
testcase_18 AC 128 ms
15,140 KB
testcase_19 AC 16 ms
7,812 KB
testcase_20 AC 15 ms
7,900 KB
testcase_21 AC 15 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
x=list(map(int,input().split()))
a=sum(x)/n
b=[]
for i in x:
    b.append(50-(a-i)/2)
for i in b:
    print(int(i))
0