結果

問題 No.1131 Deviation Score
ユーザー Subaru314Subaru314
提出日時 2021-02-21 00:32:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 11,804 KB
実行使用メモリ 17,360 KB
最終ジャッジ日時 2023-10-19 03:10:18
合計ジャッジ時間 3,865 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
11,628 KB
testcase_01 AC 32 ms
10,232 KB
testcase_02 AC 135 ms
16,172 KB
testcase_03 AC 78 ms
13,032 KB
testcase_04 AC 126 ms
15,776 KB
testcase_05 AC 68 ms
12,300 KB
testcase_06 AC 133 ms
16,112 KB
testcase_07 AC 81 ms
13,120 KB
testcase_08 AC 123 ms
15,480 KB
testcase_09 AC 64 ms
12,032 KB
testcase_10 AC 115 ms
15,296 KB
testcase_11 AC 119 ms
15,580 KB
testcase_12 AC 106 ms
14,760 KB
testcase_13 AC 134 ms
16,100 KB
testcase_14 AC 51 ms
11,344 KB
testcase_15 AC 51 ms
11,288 KB
testcase_16 AC 123 ms
15,620 KB
testcase_17 AC 67 ms
12,204 KB
testcase_18 AC 149 ms
17,360 KB
testcase_19 AC 30 ms
10,128 KB
testcase_20 AC 30 ms
10,084 KB
testcase_21 AC 31 ms
10,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int,input().split()))

ave = sum(l)/n

for i in range(n):
  print(int(50+(l[i]-ave)/2))
0