結果

問題 No.1131 Deviation Score
ユーザー rythem00359rythem00359
提出日時 2020-08-12 14:02:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 36,868 KB
最終ジャッジ日時 2023-09-10 12:26:59
合計ジャッジ時間 7,283 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
30,996 KB
testcase_01 AC 139 ms
29,512 KB
testcase_02 AC 265 ms
35,840 KB
testcase_03 AC 202 ms
32,240 KB
testcase_04 AC 254 ms
35,020 KB
testcase_05 AC 178 ms
31,332 KB
testcase_06 AC 257 ms
35,436 KB
testcase_07 AC 195 ms
32,624 KB
testcase_08 AC 247 ms
34,780 KB
testcase_09 AC 175 ms
31,544 KB
testcase_10 AC 242 ms
34,448 KB
testcase_11 AC 244 ms
34,724 KB
testcase_12 AC 232 ms
34,160 KB
testcase_13 AC 257 ms
35,412 KB
testcase_14 AC 166 ms
30,776 KB
testcase_15 AC 162 ms
30,712 KB
testcase_16 AC 249 ms
34,868 KB
testcase_17 AC 179 ms
31,432 KB
testcase_18 AC 285 ms
36,868 KB
testcase_19 AC 135 ms
29,428 KB
testcase_20 AC 137 ms
29,376 KB
testcase_21 AC 138 ms
29,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
N = int(input())
x = numpy.array([a for a in map(int, input().split())])
ave = numpy.mean(x)
for i in x:
    print(int(50 - (ave - i) / 2))
0