結果

問題 No.1134 Deviation Score Ⅱ
ユーザー 炭酸水炭酸水
提出日時 2022-05-14 03:28:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,724 KB
最終ジャッジ日時 2024-07-22 09:17:27
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 94 ms
16,024 KB
testcase_02 AC 73 ms
14,504 KB
testcase_03 AC 83 ms
15,340 KB
testcase_04 AC 54 ms
12,672 KB
testcase_05 AC 92 ms
15,992 KB
testcase_06 AC 47 ms
12,032 KB
testcase_07 AC 43 ms
11,776 KB
testcase_08 AC 82 ms
15,156 KB
testcase_09 AC 43 ms
11,520 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 71 ms
14,336 KB
testcase_12 AC 70 ms
14,208 KB
testcase_13 AC 95 ms
16,712 KB
testcase_14 AC 71 ms
14,464 KB
testcase_15 AC 59 ms
13,056 KB
testcase_16 AC 45 ms
11,776 KB
testcase_17 AC 69 ms
14,024 KB
testcase_18 AC 73 ms
14,536 KB
testcase_19 AC 86 ms
15,600 KB
testcase_20 AC 60 ms
13,156 KB
testcase_21 AC 84 ms
16,036 KB
testcase_22 AC 73 ms
11,904 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 38 ms
11,264 KB
testcase_26 AC 98 ms
17,724 KB
testcase_27 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

a_sum = 0
for i in a:
    a_sum += i

a_ave = a_sum / n

a_sd_sum = 0
for i in a:
    a_sd_sum += (i - a_ave)**2

a_sd = (a_sd_sum / n)**0.5

if a_sd == 0:
    print(50)
else:
    print(int(50 + (a[(int(input())) - 1] - a_ave) * 10 / a_sd))
0