結果

問題 No.1134 Deviation Score Ⅱ
ユーザー RISE70226821RISE70226821
提出日時 2020-08-03 16:59:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 77,944 KB
実行使用メモリ 59,552 KB
最終ジャッジ日時 2024-09-13 09:18:49
合計ジャッジ時間 14,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,068 KB
testcase_01 AC 559 ms
59,356 KB
testcase_02 AC 482 ms
59,228 KB
testcase_03 AC 528 ms
59,404 KB
testcase_04 AC 363 ms
59,088 KB
testcase_05 AC 555 ms
59,476 KB
testcase_06 AC 306 ms
58,852 KB
testcase_07 AC 280 ms
58,368 KB
testcase_08 AC 507 ms
59,332 KB
testcase_09 AC 268 ms
57,956 KB
testcase_10 AC 196 ms
56,312 KB
testcase_11 AC 487 ms
59,224 KB
testcase_12 AC 484 ms
59,424 KB
testcase_13 AC 566 ms
59,444 KB
testcase_14 AC 444 ms
58,880 KB
testcase_15 AC 421 ms
59,208 KB
testcase_16 AC 286 ms
58,628 KB
testcase_17 AC 500 ms
59,268 KB
testcase_18 AC 495 ms
59,500 KB
testcase_19 AC 534 ms
59,552 KB
testcase_20 AC 414 ms
59,020 KB
testcase_21 AC 530 ms
59,108 KB
testcase_22 AC 483 ms
59,288 KB
testcase_23 AC 134 ms
54,304 KB
testcase_24 AC 135 ms
53,916 KB
testcase_25 AC 250 ms
57,964 KB
testcase_26 AC 507 ms
59,076 KB
testcase_27 AC 134 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] X = new int[N];
		int totalX = 0;
		for(int i = 0; i < N; i++){
			X[i] = sc.nextInt();
			totalX += X[i];
		}
		int M = sc.nextInt();
		
		// 途中計算
		double ave = (double)totalX / N;

		//System.out.print("ave = ");
		//System.out.println(ave);

		double[] dif = new double[N];
		double totalDif = 0;
		for(int i = 0; i < N; i++){
			dif[i] = (X[i] - ave) * (X[i] - ave);
			totalDif += dif[i];
		}
		double difAve = Math.sqrt(totalDif / N);

		//System.out.print("totalDif = ");
		//System.out.println(totalDif);
		//System.out.print("difAve = ");
		//System.out.println(difAve);
		
		// 偏差値算出
		int result = 0;
		if(difAve == 0){
			result = 50;
		}else{
			int score = X[M-1];
			double tmp = (score - ave) * 10 / difAve;
			result = (int)(50 + tmp);
			//System.out.print("score = ");
			//System.out.println(score);
			//System.out.print("tmp = ");
			//System.out.println(tmp);
		}
		
		// 出力
		System.out.println(result);
	}

}
0