結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
|
| 提出日時 | 2021-09-29 21:50:07 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 116 bytes |
| 記録 | |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 94,080 KB |
| 最終ジャッジ日時 | 2026-03-31 06:53:03 |
| 合計ジャッジ時間 | 3,113 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 20 |
ソースコード
N = int(input())
x = list(map(int, input().split()))
A = sum(x) / N
for s in x:
print(int(50 - (A - s) // 2))