結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
|
| 提出日時 | 2023-04-30 23:36:04 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 189 ms |
| コンパイル使用メモリ | 85,068 KB |
| 実行使用メモリ | 93,568 KB |
| 最終ジャッジ日時 | 2026-05-13 19:46:54 |
| 合計ジャッジ時間 | 3,401 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 |
ソースコード
N = int(input())
x = list(map(int, input().split()))
S = sum(x)
A = S/N
for xx in x:
d = int(50-(A-xx)/2)
print(d)