結果

問題 No.1134 Deviation Score Ⅱ
ユーザー hiragnhiragn
提出日時 2022-11-22 16:58:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,740 KB
最終ジャッジ日時 2024-09-23 02:38:21
合計ジャッジ時間 16,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
44,304 KB
testcase_01 WA -
testcase_02 AC 543 ms
44,956 KB
testcase_03 AC 547 ms
45,852 KB
testcase_04 WA -
testcase_05 AC 545 ms
46,120 KB
testcase_06 AC 518 ms
44,052 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 516 ms
43,796 KB
testcase_11 AC 542 ms
45,596 KB
testcase_12 AC 534 ms
45,468 KB
testcase_13 AC 554 ms
45,972 KB
testcase_14 AC 535 ms
45,464 KB
testcase_15 WA -
testcase_16 AC 520 ms
44,180 KB
testcase_17 AC 542 ms
45,464 KB
testcase_18 AC 539 ms
44,544 KB
testcase_19 AC 551 ms
46,616 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 575 ms
46,740 KB
testcase_27 AC 516 ms
44,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    _ = int(input())
    x = np.array(list(map(int, input().split())))
    m = int(input())

    ans = np.round_(50 + 10 * (x - np.average(x)) / np.std(x))
    print(int(ans[m - 1]))


if __name__ == "__main__":
    main()
0