結果

問題 No.970 数列変換マシン
ユーザー 37zigen37zigen
提出日時 2020-03-18 19:11:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,321 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 80,720 KB
実行使用メモリ 70,540 KB
最終ジャッジ日時 2024-05-08 02:37:45
合計ジャッジ時間 19,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,321 ms
70,156 KB
testcase_01 AC 1,308 ms
70,540 KB
testcase_02 AC 1,258 ms
70,148 KB
testcase_03 AC 1,238 ms
70,196 KB
testcase_04 AC 1,223 ms
70,328 KB
testcase_05 AC 1,240 ms
70,104 KB
testcase_06 AC 1,198 ms
70,356 KB
testcase_07 AC 1,227 ms
70,364 KB
testcase_08 AC 1,245 ms
70,064 KB
testcase_09 AC 268 ms
58,424 KB
testcase_10 AC 266 ms
58,740 KB
testcase_11 AC 304 ms
58,172 KB
testcase_12 AC 283 ms
58,400 KB
testcase_13 AC 244 ms
57,440 KB
testcase_14 AC 325 ms
59,080 KB
testcase_15 AC 158 ms
55,060 KB
testcase_16 AC 158 ms
55,036 KB
testcase_17 AC 157 ms
54,772 KB
testcase_18 AC 157 ms
55,200 KB
testcase_19 AC 147 ms
54,624 KB
testcase_20 AC 155 ms
55,184 KB
testcase_21 AC 158 ms
54,744 KB
testcase_22 AC 160 ms
54,888 KB
testcase_23 AC 161 ms
55,044 KB
testcase_24 AC 156 ms
54,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		long[] y=new long[n];
		for(int i=0;i<n;++i)y[i]=sc.nextLong();
		long tot=0;
		for(int i=0;i<n;++i)tot+=y[i];
		for(int i=0;i<n;++i) {
			System.out.print((tot-(n-1)*y[i])+(i==n-1?"\n":" "));
		}
		
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0