結果
問題 |
No.1131 Deviation Score
|
ユーザー |
|
提出日時 | 2022-02-18 15:23:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 71 ms / 2,000 ms |
コード長 | 126 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 88,768 KB |
最終ジャッジ日時 | 2024-06-29 08:04:36 |
合計ジャッジ時間 | 2,302 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 21 |
ソースコード
n = int(input()) xn = list(map(int,input().split())) xn_ave = sum(xn)/len(xn) for xi in xn: print(int(50-((xn_ave-xi)/2)))