結果

問題 No.1131 Deviation Score
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-11 13:19:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 90,020 KB
最終ジャッジ日時 2023-09-10 12:35:10
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,852 KB
testcase_01 AC 84 ms
76,768 KB
testcase_02 AC 105 ms
88,204 KB
testcase_03 AC 93 ms
80,808 KB
testcase_04 AC 102 ms
86,892 KB
testcase_05 AC 90 ms
78,628 KB
testcase_06 AC 104 ms
88,128 KB
testcase_07 AC 94 ms
81,052 KB
testcase_08 AC 103 ms
87,016 KB
testcase_09 AC 89 ms
78,676 KB
testcase_10 AC 104 ms
85,540 KB
testcase_11 AC 103 ms
85,472 KB
testcase_12 AC 98 ms
84,436 KB
testcase_13 AC 104 ms
88,192 KB
testcase_14 AC 86 ms
77,132 KB
testcase_15 AC 85 ms
77,196 KB
testcase_16 AC 104 ms
86,920 KB
testcase_17 AC 95 ms
79,156 KB
testcase_18 AC 109 ms
90,020 KB
testcase_19 AC 73 ms
71,212 KB
testcase_20 AC 71 ms
71,408 KB
testcase_21 AC 72 ms
71,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
x=list(map(int,input().split()))
a=sum(x)/n
for i in x:
	print(int(50-(a-i)/2))
0