結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
|
| 提出日時 | 2020-09-28 04:53:25 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 121 bytes |
| 記録 | |
| コンパイル時間 | 167 ms |
| コンパイル使用メモリ | 84,788 KB |
| 実行使用メモリ | 175,704 KB |
| 最終ジャッジ日時 | 2026-03-21 17:29:14 |
| 合計ジャッジ時間 | 39,976 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 10 TLE * 10 |
ソースコード
import math n=int(input()) x=list(map(int,input().split())) print(*[math.floor(50-(sum(x)/n-x[i])/2) for i in range(n)])