結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
71,744 KB
testcase_01 AC 50 ms
63,296 KB
testcase_02 AC 73 ms
87,556 KB
testcase_03 AC 57 ms
76,728 KB
testcase_04 AC 70 ms
86,184 KB
testcase_05 AC 54 ms
73,252 KB
testcase_06 AC 74 ms
87,536 KB
testcase_07 AC 59 ms
77,448 KB
testcase_08 AC 70 ms
85,952 KB
testcase_09 AC 55 ms
73,128 KB
testcase_10 AC 68 ms
84,660 KB
testcase_11 AC 69 ms
84,972 KB
testcase_12 AC 67 ms
83,488 KB
testcase_13 AC 74 ms
87,568 KB
testcase_14 AC 52 ms
69,356 KB
testcase_15 AC 52 ms
69,376 KB
testcase_16 AC 70 ms
85,920 KB
testcase_17 AC 57 ms
74,572 KB
testcase_18 AC 78 ms
88,964 KB
testcase_19 AC 39 ms
53,468 KB
testcase_20 AC 38 ms
53,052 KB
testcase_21 AC 36 ms
52,304 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