結果

問題 No.1131 Deviation Score
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 1,143 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 88,208 KB
最終ジャッジ日時 2023-10-23 17:05:54
合計ジャッジ時間 5,365 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
69,676 KB
testcase_01 AC 51 ms
62,564 KB
testcase_02 AC 75 ms
86,492 KB
testcase_03 AC 80 ms
76,212 KB
testcase_04 AC 73 ms
84,968 KB
testcase_05 AC 58 ms
72,328 KB
testcase_06 AC 74 ms
86,476 KB
testcase_07 AC 59 ms
76,336 KB
testcase_08 AC 73 ms
85,040 KB
testcase_09 AC 57 ms
71,884 KB
testcase_10 AC 71 ms
83,716 KB
testcase_11 AC 75 ms
83,848 KB
testcase_12 AC 71 ms
82,568 KB
testcase_13 AC 76 ms
86,460 KB
testcase_14 AC 55 ms
68,312 KB
testcase_15 AC 54 ms
68,136 KB
testcase_16 AC 74 ms
85,076 KB
testcase_17 AC 60 ms
72,992 KB
testcase_18 AC 78 ms
88,208 KB
testcase_19 AC 39 ms
53,396 KB
testcase_20 AC 37 ms
53,396 KB
testcase_21 AC 37 ms
53,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
A = sum(X) / N
for i in range(N):
    print(int(50 - (A - X[i]) / 2))
0