結果

問題 No.1131 Deviation Score
ユーザー SoratopSoratop
提出日時 2020-11-18 01:40:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 10,484 KB
実行使用メモリ 17,716 KB
最終ジャッジ日時 2023-09-10 12:34:22
合計ジャッジ時間 3,655 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
11,704 KB
testcase_01 AC 35 ms
10,312 KB
testcase_02 AC 148 ms
16,340 KB
testcase_03 AC 86 ms
13,164 KB
testcase_04 AC 140 ms
15,936 KB
testcase_05 AC 72 ms
12,596 KB
testcase_06 AC 146 ms
16,368 KB
testcase_07 AC 86 ms
13,288 KB
testcase_08 AC 133 ms
15,544 KB
testcase_09 AC 70 ms
12,124 KB
testcase_10 AC 128 ms
15,792 KB
testcase_11 AC 132 ms
15,824 KB
testcase_12 AC 120 ms
14,924 KB
testcase_13 AC 144 ms
16,432 KB
testcase_14 AC 56 ms
11,708 KB
testcase_15 AC 55 ms
11,520 KB
testcase_16 AC 136 ms
15,776 KB
testcase_17 AC 72 ms
12,336 KB
testcase_18 AC 166 ms
17,716 KB
testcase_19 AC 32 ms
10,200 KB
testcase_20 AC 31 ms
10,168 KB
testcase_21 AC 31 ms
10,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
n=int(input())
a=list(map(int,input().split()))
s=statistics.mean(a)
for i in a:
    print(int(50+(i-s)/2))
0