結果
| 問題 |
No.1131 Deviation Score
|
| ユーザー |
|
| 提出日時 | 2020-08-08 20:00:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 128 bytes |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 16,708 KB |
| 最終ジャッジ日時 | 2024-10-02 00:17:17 |
| 合計ジャッジ時間 | 3,700 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 20 |
ソースコード
n=int(input())
ls=[int(i) for i in input().split()]
av=sum(ls)//len(ls)
for i in range(n):
d=50-(av-ls[i])//2
print(d)