結果

問題 No.970 数列変換マシン
ユーザー Mishan5055Mishan5055
提出日時 2020-04-04 03:50:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,264 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,587 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 70,416 KB
最終ジャッジ日時 2024-07-03 06:49:16
合計ジャッジ時間 17,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,264 ms
69,892 KB
testcase_01 AC 1,123 ms
70,056 KB
testcase_02 AC 1,159 ms
70,292 KB
testcase_03 AC 1,112 ms
69,764 KB
testcase_04 AC 1,131 ms
70,008 KB
testcase_05 AC 1,212 ms
69,736 KB
testcase_06 AC 1,173 ms
70,348 KB
testcase_07 AC 1,118 ms
69,532 KB
testcase_08 AC 1,147 ms
70,416 KB
testcase_09 AC 239 ms
54,904 KB
testcase_10 AC 235 ms
55,228 KB
testcase_11 AC 268 ms
57,372 KB
testcase_12 AC 253 ms
57,252 KB
testcase_13 AC 232 ms
55,008 KB
testcase_14 AC 282 ms
57,344 KB
testcase_15 AC 139 ms
54,204 KB
testcase_16 AC 140 ms
54,336 KB
testcase_17 AC 143 ms
54,484 KB
testcase_18 AC 142 ms
54,216 KB
testcase_19 AC 141 ms
54,208 KB
testcase_20 AC 137 ms
54,352 KB
testcase_21 AC 146 ms
54,116 KB
testcase_22 AC 139 ms
54,292 KB
testcase_23 AC 140 ms
54,140 KB
testcase_24 AC 136 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc=new Scanner(System.in);
        int N=sc.nextInt();
        int[] b=new int[N];
        int sum=0;
        
        for(int i=0;i<N;i++){
            b[i]=sc.nextInt();
            sum+=b[i];
        }
        
        for(int i=0;i<N;i++){
            System.out.print((sum-(N-1)*b[i])+" ");
        }
        
        System.out.println();
    }
}
0