結果
問題 |
No.1131 Deviation Score
|
ユーザー |
![]() |
提出日時 | 2020-08-12 09:30:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,136 KB |
最終ジャッジ日時 | 2024-10-09 18:02:38 |
合計ジャッジ時間 | 3,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 1 WA * 20 |
ソースコード
N = int(input().strip()) x = [int(i) for i in input().strip().split(' ')] A = sum(x) / len(x) print(' '.join([str(int(50 - ((A - i) / 2))) for i in x]))