結果

問題 No.970 数列変換マシン
ユーザー ks2mks2m
提出日時 2020-01-17 21:26:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,695 ms
コンパイル使用メモリ 73,716 KB
実行使用メモリ 51,988 KB
最終ジャッジ日時 2024-06-25 18:35:46
合計ジャッジ時間 7,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
51,556 KB
testcase_01 AC 259 ms
51,636 KB
testcase_02 AC 269 ms
51,988 KB
testcase_03 AC 242 ms
50,356 KB
testcase_04 AC 244 ms
49,672 KB
testcase_05 AC 261 ms
51,152 KB
testcase_06 AC 189 ms
48,424 KB
testcase_07 AC 237 ms
49,616 KB
testcase_08 AC 241 ms
49,152 KB
testcase_09 AC 56 ms
36,800 KB
testcase_10 AC 57 ms
36,660 KB
testcase_11 AC 64 ms
37,188 KB
testcase_12 AC 58 ms
36,772 KB
testcase_13 AC 58 ms
36,844 KB
testcase_14 AC 71 ms
38,196 KB
testcase_15 AC 53 ms
36,988 KB
testcase_16 AC 53 ms
36,596 KB
testcase_17 AC 52 ms
36,968 KB
testcase_18 AC 53 ms
36,808 KB
testcase_19 AC 55 ms
36,648 KB
testcase_20 AC 51 ms
36,760 KB
testcase_21 AC 52 ms
36,972 KB
testcase_22 AC 52 ms
36,492 KB
testcase_23 AC 52 ms
36,676 KB
testcase_24 AC 51 ms
36,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] y = new int[n];
		int sum = 0;
		for (int i = 0; i < n; i++) {
			y[i] = Integer.parseInt(sa[i]);
			sum += y[i];
		}
		br.close();

		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
			int x = sum - y[i] * (n - 1);
			sb.append(x).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0