結果

問題 No.1134 Deviation Score Ⅱ
ユーザー face4face4
提出日時 2020-08-04 21:45:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 60,660 KB
最終ジャッジ日時 2024-09-14 21:12:18
合計ジャッジ時間 7,367 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,316 KB
testcase_01 AC 172 ms
57,504 KB
testcase_02 AC 157 ms
57,312 KB
testcase_03 AC 167 ms
58,220 KB
testcase_04 AC 115 ms
54,072 KB
testcase_05 AC 172 ms
57,620 KB
testcase_06 AC 102 ms
54,236 KB
testcase_07 AC 101 ms
51,980 KB
testcase_08 AC 149 ms
57,068 KB
testcase_09 AC 101 ms
51,940 KB
testcase_10 AC 58 ms
50,292 KB
testcase_11 AC 150 ms
58,116 KB
testcase_12 AC 140 ms
56,776 KB
testcase_13 AC 184 ms
60,660 KB
testcase_14 AC 151 ms
56,704 KB
testcase_15 AC 129 ms
54,108 KB
testcase_16 AC 90 ms
51,928 KB
testcase_17 AC 135 ms
57,108 KB
testcase_18 AC 157 ms
57,388 KB
testcase_19 AC 158 ms
57,260 KB
testcase_20 AC 132 ms
54,340 KB
testcase_21 AC 172 ms
57,528 KB
testcase_22 AC 151 ms
57,140 KB
testcase_23 AC 53 ms
50,328 KB
testcase_24 AC 54 ms
50,220 KB
testcase_25 AC 85 ms
51,288 KB
testcase_26 AC 191 ms
60,280 KB
testcase_27 AC 55 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] line = br.readLine().split(" ");
        int x[] = new int[n];
        double sum = 0;
        for(int i = 0; i < n; i++){
            x[i] = Integer.parseInt(line[i]);
            sum += x[i];
        }
        sum /= n;
        double d = 0;
        for(int i = 0; i < n; i++){
            d += Math.pow(sum-x[i], 2.0);
        }
        d = Math.sqrt(d/n);
        int m = Integer.parseInt(br.readLine())-1;
        int ret = 50;
        if(d > 0){
            ret += (x[m]-sum)*10/d;
        }
        System.out.println(ret);
    }
}
0