結果

問題 No.1131 Deviation Score
ユーザー hal9009hal9009
提出日時 2020-11-02 17:18:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 10,752 KB
実行使用メモリ 36,752 KB
最終ジャッジ日時 2023-09-10 12:33:28
合計ジャッジ時間 6,739 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
30,776 KB
testcase_01 AC 136 ms
29,372 KB
testcase_02 AC 250 ms
35,560 KB
testcase_03 AC 184 ms
32,492 KB
testcase_04 AC 241 ms
34,756 KB
testcase_05 AC 171 ms
31,144 KB
testcase_06 AC 245 ms
35,216 KB
testcase_07 AC 189 ms
32,472 KB
testcase_08 AC 235 ms
34,756 KB
testcase_09 AC 172 ms
31,144 KB
testcase_10 AC 225 ms
34,348 KB
testcase_11 AC 227 ms
34,796 KB
testcase_12 AC 221 ms
34,136 KB
testcase_13 AC 242 ms
35,156 KB
testcase_14 AC 156 ms
30,528 KB
testcase_15 AC 156 ms
30,392 KB
testcase_16 AC 237 ms
34,824 KB
testcase_17 AC 177 ms
31,044 KB
testcase_18 AC 263 ms
36,752 KB
testcase_19 AC 136 ms
29,164 KB
testcase_20 AC 134 ms
28,948 KB
testcase_21 AC 138 ms
28,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
x = tuple(map(int, input().split()))
ave = np.average(x)
for xi in x:
    print(int(50-(ave-xi)/2))
0