結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
wagasa2
|
| 提出日時 | 2020-08-23 20:29:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 638 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,024 KB |
| 最終ジャッジ日時 | 2026-05-05 11:19:35 |
| 合計ジャッジ時間 | 6,857 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 20 |
ソースコード
N = int(input()) x_s = [int(x) for x in input().split()] A = sum(x_s) / len(x_s) d = [int(50-(A-x)//2) for x in x_s] p = list(map(print, d))
wagasa2