結果

問題 No.1134 Deviation Score Ⅱ
ユーザー tentententen
提出日時 2020-08-17 22:12:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 84,372 KB
実行使用メモリ 59,048 KB
最終ジャッジ日時 2024-10-11 11:24:24
合計ジャッジ時間 14,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,828 KB
testcase_01 AC 564 ms
48,108 KB
testcase_02 AC 477 ms
47,880 KB
testcase_03 AC 520 ms
47,928 KB
testcase_04 AC 362 ms
47,832 KB
testcase_05 AC 559 ms
48,084 KB
testcase_06 AC 315 ms
47,636 KB
testcase_07 AC 281 ms
47,016 KB
testcase_08 AC 481 ms
48,024 KB
testcase_09 AC 279 ms
47,324 KB
testcase_10 AC 196 ms
43,220 KB
testcase_11 AC 457 ms
47,868 KB
testcase_12 AC 454 ms
47,880 KB
testcase_13 AC 571 ms
48,192 KB
testcase_14 AC 467 ms
47,780 KB
testcase_15 AC 419 ms
47,768 KB
testcase_16 AC 288 ms
47,292 KB
testcase_17 AC 472 ms
47,848 KB
testcase_18 AC 489 ms
48,116 KB
testcase_19 AC 538 ms
47,988 KB
testcase_20 AC 443 ms
48,008 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 247 ms
46,120 KB
testcase_26 AC 508 ms
48,016 KB
testcase_27 AC 134 ms
40,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		double sum = 0;
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		    sum += arr[i];
		}
		double mean = sum / n;
		double ssum = 0;
		for (int i = 0; i < n; i++) {
		    ssum += (arr[i] - mean) * (arr[i] - mean);
		}
		double sd = Math.sqrt(ssum / n);
		int m = sc.nextInt() - 1;
		int ans = (int)((arr[m] - mean) * 10 / sd + 50);
		System.out.println(ans);
	}
}
0