結果

問題 No.970 数列変換マシン
ユーザー C_nena_EC_nena_E
提出日時 2020-01-17 22:05:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,426 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 85,196 KB
実行使用メモリ 61,732 KB
最終ジャッジ日時 2024-06-25 20:16:01
合計ジャッジ時間 21,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,396 ms
61,520 KB
testcase_01 AC 1,359 ms
61,428 KB
testcase_02 AC 1,426 ms
61,608 KB
testcase_03 AC 1,254 ms
61,532 KB
testcase_04 AC 1,285 ms
61,732 KB
testcase_05 AC 1,293 ms
61,568 KB
testcase_06 AC 1,279 ms
59,864 KB
testcase_07 AC 1,276 ms
61,704 KB
testcase_08 AC 1,253 ms
61,512 KB
testcase_09 AC 262 ms
43,744 KB
testcase_10 AC 266 ms
43,656 KB
testcase_11 AC 307 ms
44,536 KB
testcase_12 AC 283 ms
44,208 KB
testcase_13 AC 275 ms
43,660 KB
testcase_14 AC 311 ms
46,052 KB
testcase_15 AC 153 ms
41,308 KB
testcase_16 AC 155 ms
41,724 KB
testcase_17 AC 153 ms
41,752 KB
testcase_18 AC 153 ms
41,612 KB
testcase_19 AC 155 ms
41,604 KB
testcase_20 AC 136 ms
40,468 KB
testcase_21 AC 152 ms
41,484 KB
testcase_22 AC 137 ms
40,476 KB
testcase_23 AC 151 ms
41,520 KB
testcase_24 AC 152 ms
41,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int total = 0;
        List<Integer> li = new ArrayList<Integer>();
        for(int i = 0; i < n; i++){
            int tmp = sc.nextInt();
            li.add(tmp);
            total += tmp;
        }
        int i = 0;
        for(int v: li){
            if(i == n-1){
                System.out.print(total-v*(n-1));
            }else{
                System.out.print(total-v*(n-1)+" ");
            }
            i++;
        }
    }
}

0