結果

問題 No.970 数列変換マシン
ユーザー htensaihtensai
提出日時 2020-01-18 18:58:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 51,808 KB
最終ジャッジ日時 2024-06-28 00:44:01
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
51,516 KB
testcase_01 AC 265 ms
51,564 KB
testcase_02 AC 266 ms
51,808 KB
testcase_03 AC 253 ms
49,596 KB
testcase_04 AC 246 ms
49,752 KB
testcase_05 AC 260 ms
51,700 KB
testcase_06 AC 207 ms
49,800 KB
testcase_07 AC 247 ms
49,604 KB
testcase_08 AC 249 ms
49,572 KB
testcase_09 AC 58 ms
36,604 KB
testcase_10 AC 57 ms
36,988 KB
testcase_11 AC 63 ms
37,192 KB
testcase_12 AC 58 ms
37,160 KB
testcase_13 AC 57 ms
36,888 KB
testcase_14 AC 82 ms
37,816 KB
testcase_15 AC 51 ms
36,452 KB
testcase_16 AC 51 ms
37,000 KB
testcase_17 AC 51 ms
36,672 KB
testcase_18 AC 51 ms
36,916 KB
testcase_19 AC 50 ms
36,860 KB
testcase_20 AC 51 ms
36,684 KB
testcase_21 AC 53 ms
36,772 KB
testcase_22 AC 54 ms
36,816 KB
testcase_23 AC 51 ms
36,692 KB
testcase_24 AC 51 ms
36,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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[] line = br.readLine().split(" ", n);
        long[] arr = new long[n];
        long total = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = Integer.parseInt(line[i]);
            total += arr[i];
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i != 0) {
                sb.append(" ");
            }
            long ans = total - arr[i] * (n - 1);
            sb.append(ans);
        }
        System.out.println(sb);
    }
}
0