結果

問題 No.1131 Deviation Score
ユーザー tentententen
提出日時 2020-08-17 22:48:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 59,468 KB
最終ジャッジ日時 2024-06-28 03:48:59
合計ジャッジ時間 12,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
58,752 KB
testcase_01 AC 195 ms
56,836 KB
testcase_02 AC 520 ms
59,188 KB
testcase_03 AC 407 ms
59,144 KB
testcase_04 AC 580 ms
59,080 KB
testcase_05 AC 359 ms
58,948 KB
testcase_06 AC 531 ms
59,404 KB
testcase_07 AC 405 ms
59,296 KB
testcase_08 AC 514 ms
59,348 KB
testcase_09 AC 345 ms
59,032 KB
testcase_10 AC 559 ms
59,228 KB
testcase_11 AC 491 ms
59,468 KB
testcase_12 AC 542 ms
59,188 KB
testcase_13 AC 565 ms
59,184 KB
testcase_14 AC 288 ms
58,448 KB
testcase_15 AC 290 ms
58,348 KB
testcase_16 AC 572 ms
59,176 KB
testcase_17 AC 379 ms
59,132 KB
testcase_18 AC 594 ms
59,172 KB
testcase_19 AC 179 ms
54,264 KB
testcase_20 AC 133 ms
54,316 KB
testcase_21 AC 130 ms
53,924 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;
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    int ans = (int)(50 - (mean - arr[i]) / 2);
		    sb.append(ans).append("\n");
		}
		System.out.print(sb);
	}
}
0