結果

問題 No.1134 Deviation Score Ⅱ
ユーザー hiragnhiragn
提出日時 2022-11-22 17:24:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,652 KB
最終ジャッジ日時 2024-09-23 02:58:34
合計ジャッジ時間 17,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
43,800 KB
testcase_01 AC 537 ms
46,100 KB
testcase_02 AC 527 ms
44,692 KB
testcase_03 AC 534 ms
45,208 KB
testcase_04 AC 519 ms
43,716 KB
testcase_05 AC 537 ms
45,724 KB
testcase_06 AC 517 ms
43,924 KB
testcase_07 AC 516 ms
43,676 KB
testcase_08 AC 539 ms
45,592 KB
testcase_09 AC 512 ms
43,932 KB
testcase_10 AC 508 ms
43,668 KB
testcase_11 AC 527 ms
44,564 KB
testcase_12 AC 534 ms
44,820 KB
testcase_13 AC 541 ms
46,356 KB
testcase_14 AC 527 ms
44,576 KB
testcase_15 AC 525 ms
43,800 KB
testcase_16 AC 517 ms
43,664 KB
testcase_17 AC 527 ms
44,944 KB
testcase_18 AC 528 ms
44,948 KB
testcase_19 AC 544 ms
45,332 KB
testcase_20 AC 530 ms
43,924 KB
testcase_21 AC 534 ms
45,720 KB
testcase_22 AC 534 ms
43,928 KB
testcase_23 AC 509 ms
44,180 KB
testcase_24 AC 511 ms
44,056 KB
testcase_25 AC 514 ms
44,052 KB
testcase_26 AC 548 ms
46,652 KB
testcase_27 AC 516 ms
44,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

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


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