結果

問題 No.1131 Deviation Score
ユーザー hi-akegarasu
提出日時 2020-09-28 04:54:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 131 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 94,612 KB
最終ジャッジ日時 2024-07-01 01:41:28
合計ジャッジ時間 4,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 1
other AC * 2 TLE * 1 -- * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
x=list(map(int,input().split()))
print(*[math.floor(50-(sum(x)/n-x[i])/2) for i in range(n)], sep="\n")
0