結果

問題 No.1131 Deviation Score
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-24 10:17:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 88,980 KB
最終ジャッジ日時 2024-04-26 14:00:15
合計ジャッジ時間 2,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
70,964 KB
testcase_01 AC 56 ms
63,900 KB
testcase_02 AC 78 ms
87,668 KB
testcase_03 AC 61 ms
77,192 KB
testcase_04 AC 75 ms
86,012 KB
testcase_05 AC 61 ms
73,728 KB
testcase_06 AC 77 ms
87,232 KB
testcase_07 AC 62 ms
77,976 KB
testcase_08 AC 75 ms
86,060 KB
testcase_09 AC 63 ms
74,420 KB
testcase_10 AC 75 ms
84,812 KB
testcase_11 AC 75 ms
84,608 KB
testcase_12 AC 72 ms
83,420 KB
testcase_13 AC 79 ms
87,296 KB
testcase_14 AC 55 ms
69,292 KB
testcase_15 AC 58 ms
70,708 KB
testcase_16 AC 75 ms
85,976 KB
testcase_17 AC 60 ms
74,964 KB
testcase_18 AC 82 ms
88,980 KB
testcase_19 AC 40 ms
53,836 KB
testcase_20 AC 38 ms
53,048 KB
testcase_21 AC 38 ms
53,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor
n = int(input())
X = list(map(int,input().split()))
ave = sum(X) / n
ans = []
for i in range(n):
    print(floor(50 - (ave - X[i]) / 2))
0