結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
|
| 提出日時 | 2022-11-23 15:08:05 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 291 ms |
| コンパイル使用メモリ | 21,464 KB |
| 実行使用メモリ | 20,524 KB |
| 最終ジャッジ日時 | 2026-09-03 10:29:03 |
| 合計ジャッジ時間 | 5,558 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 20 |
ソースコード
n=int(input())
l=[int(i)for i in input().split()]
s=[]
a=sum(l)/n
for i in range(n):
s+=[50-((a-l[i])//2)]
for i in range(len(s)):
print(int(s[i]))