結果

問題 No.1131 Deviation Score
ユーザー rythem00359rythem00359
提出日時 2020-08-12 14:02:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,468 KB
最終ジャッジ日時 2024-06-28 03:46:44
合計ジャッジ時間 15,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
44,296 KB
testcase_01 AC 518 ms
43,776 KB
testcase_02 AC 664 ms
45,828 KB
testcase_03 AC 580 ms
44,044 KB
testcase_04 AC 648 ms
45,064 KB
testcase_05 AC 565 ms
44,172 KB
testcase_06 AC 659 ms
45,304 KB
testcase_07 AC 579 ms
44,048 KB
testcase_08 AC 638 ms
45,196 KB
testcase_09 AC 550 ms
43,900 KB
testcase_10 AC 624 ms
45,320 KB
testcase_11 AC 624 ms
45,324 KB
testcase_12 AC 616 ms
45,312 KB
testcase_13 AC 654 ms
45,452 KB
testcase_14 AC 536 ms
44,288 KB
testcase_15 AC 535 ms
44,296 KB
testcase_16 AC 635 ms
45,572 KB
testcase_17 AC 562 ms
44,168 KB
testcase_18 AC 682 ms
46,468 KB
testcase_19 AC 511 ms
43,912 KB
testcase_20 AC 509 ms
44,292 KB
testcase_21 AC 516 ms
43,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
N = int(input())
x = numpy.array([a for a in map(int, input().split())])
ave = numpy.mean(x)
for i in x:
    print(int(50 - (ave - i) / 2))
0