結果

問題 No.1131 Deviation Score
ユーザー wagasa2
提出日時 2020-08-23 20:29:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,836 KB
最終ジャッジ日時 2024-10-15 19:18:24
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x_s = [int(x) for x in input().split()]
A = sum(x_s) / len(x_s)
d = [int(50-(A-x)//2) for x in x_s]
p = list(map(print, d))
0