結果

問題 No.970 数列変換マシン
ユーザー tentententen
提出日時 2020-08-25 16:24:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 79,408 KB
実行使用メモリ 59,624 KB
最終ジャッジ日時 2024-11-06 11:31:04
合計ジャッジ時間 12,744 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 649 ms
59,520 KB
testcase_01 AC 642 ms
59,604 KB
testcase_02 AC 671 ms
59,624 KB
testcase_03 AC 553 ms
59,212 KB
testcase_04 AC 558 ms
59,288 KB
testcase_05 AC 575 ms
59,564 KB
testcase_06 AC 582 ms
59,420 KB
testcase_07 AC 549 ms
58,860 KB
testcase_08 AC 562 ms
59,184 KB
testcase_09 AC 200 ms
54,400 KB
testcase_10 AC 204 ms
54,428 KB
testcase_11 AC 209 ms
56,840 KB
testcase_12 AC 208 ms
56,484 KB
testcase_13 AC 193 ms
54,448 KB
testcase_14 AC 212 ms
56,676 KB
testcase_15 AC 135 ms
54,012 KB
testcase_16 AC 135 ms
54,320 KB
testcase_17 AC 137 ms
54,032 KB
testcase_18 AC 135 ms
54,048 KB
testcase_19 AC 134 ms
54,256 KB
testcase_20 AC 144 ms
54,040 KB
testcase_21 AC 145 ms
54,276 KB
testcase_22 AC 137 ms
54,008 KB
testcase_23 AC 141 ms
54,144 KB
testcase_24 AC 134 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int sum = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            sum += arr[i];
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(sum - arr[i] * (n - 1));
        }
        System.out.println(sb);
    }
}
0