結果

問題 No.1134 Deviation Score Ⅱ
ユーザー ThetaTheta
提出日時 2022-10-20 17:10:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,932 KB
最終ジャッジ日時 2024-06-30 09:26:51
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 74 ms
16,188 KB
testcase_02 AC 62 ms
14,560 KB
testcase_03 AC 69 ms
15,440 KB
testcase_04 AC 46 ms
12,800 KB
testcase_05 AC 73 ms
16,172 KB
testcase_06 AC 41 ms
12,160 KB
testcase_07 AC 39 ms
11,776 KB
testcase_08 AC 66 ms
15,324 KB
testcase_09 AC 38 ms
11,776 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 59 ms
14,296 KB
testcase_12 AC 58 ms
14,436 KB
testcase_13 AC 78 ms
16,892 KB
testcase_14 AC 59 ms
14,308 KB
testcase_15 AC 49 ms
13,272 KB
testcase_16 AC 39 ms
11,904 KB
testcase_17 AC 59 ms
14,328 KB
testcase_18 AC 61 ms
14,712 KB
testcase_19 AC 69 ms
15,664 KB
testcase_20 AC 51 ms
13,440 KB
testcase_21 AC 67 ms
16,084 KB
testcase_22 AC 59 ms
12,156 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 35 ms
11,648 KB
testcase_26 AC 81 ms
17,932 KB
testcase_27 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


from math import sqrt, floor


def main():
    N = int(input())
    scores = list(map(int, input().split()))
    M = int(input())

    average = sum(scores) / N
    std_deviation = sqrt(
        sum(map(lambda score: (score - average)**2, scores))/N)
    try:
        deviation_score = 50 + (scores[M-1] - average)*10/std_deviation
    except ZeroDivisionError:
        deviation_score = 50

    if deviation_score >= 0:
        print(floor(deviation_score))
    else:
        print(-1*floor(abs(deviation_score)))


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