結果

問題 No.1131 Deviation Score
ユーザー SoratopSoratop
提出日時 2020-11-18 01:40:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,272 KB
最終ジャッジ日時 2024-06-28 03:54:42
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
14,720 KB
testcase_01 AC 52 ms
13,696 KB
testcase_02 AC 193 ms
18,420 KB
testcase_03 AC 112 ms
15,616 KB
testcase_04 AC 181 ms
17,944 KB
testcase_05 AC 97 ms
14,976 KB
testcase_06 AC 189 ms
18,336 KB
testcase_07 AC 115 ms
15,616 KB
testcase_08 AC 171 ms
17,720 KB
testcase_09 AC 94 ms
14,976 KB
testcase_10 AC 167 ms
17,576 KB
testcase_11 AC 170 ms
17,848 KB
testcase_12 AC 153 ms
17,000 KB
testcase_13 AC 190 ms
18,328 KB
testcase_14 AC 78 ms
14,336 KB
testcase_15 AC 78 ms
14,464 KB
testcase_16 AC 176 ms
17,820 KB
testcase_17 AC 98 ms
15,232 KB
testcase_18 AC 212 ms
19,272 KB
testcase_19 AC 51 ms
13,952 KB
testcase_20 AC 51 ms
13,952 KB
testcase_21 AC 51 ms
13,952 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