結果

問題 No.1131 Deviation Score
ユーザー hal9009hal9009
提出日時 2020-11-02 17:18:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 46,604 KB
最終ジャッジ日時 2024-06-28 03:53:51
合計ジャッジ時間 15,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
44,168 KB
testcase_01 AC 507 ms
44,424 KB
testcase_02 AC 646 ms
45,320 KB
testcase_03 AC 564 ms
44,172 KB
testcase_04 AC 618 ms
45,076 KB
testcase_05 AC 549 ms
44,088 KB
testcase_06 AC 643 ms
45,448 KB
testcase_07 AC 562 ms
43,920 KB
testcase_08 AC 606 ms
45,324 KB
testcase_09 AC 542 ms
44,172 KB
testcase_10 AC 604 ms
45,324 KB
testcase_11 AC 612 ms
44,808 KB
testcase_12 AC 602 ms
44,680 KB
testcase_13 AC 631 ms
45,452 KB
testcase_14 AC 529 ms
44,292 KB
testcase_15 AC 524 ms
44,036 KB
testcase_16 AC 620 ms
45,456 KB
testcase_17 AC 556 ms
44,300 KB
testcase_18 AC 648 ms
46,604 KB
testcase_19 AC 511 ms
44,172 KB
testcase_20 AC 503 ms
44,304 KB
testcase_21 AC 500 ms
43,792 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