結果
問題 |
No.1131 Deviation Score
|
ユーザー |
![]() |
提出日時 | 2021-07-14 22:36:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,844 KB |
最終ジャッジ日時 | 2024-07-03 23:20:39 |
合計ジャッジ時間 | 3,579 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 20 |
ソースコード
def main(): N = int(input()) scores = [int(n) for n in input().split()] A = sum(scores) // N for x in range(N): D = 50 - ((A - scores[x]) // 2) print(D) if __name__ == '__main__': main()