結果

問題 No.1131 Deviation Score
ユーザー hi-akegarasu
提出日時 2020-09-28 04:53:25
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 121 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 167 ms
コンパイル使用メモリ 84,788 KB
実行使用メモリ 175,704 KB
最終ジャッジ日時 2026-03-21 17:29:14
合計ジャッジ時間 39,976 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 1 WA * 10 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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)])
0