結果

問題 No.970 数列変換マシン
ユーザー Y17Y17
提出日時 2020-02-03 21:43:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 159,724 KB
実行使用メモリ 5,184 KB
最終ジャッジ日時 2023-10-19 10:36:44
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
5,184 KB
testcase_01 AC 37 ms
5,184 KB
testcase_02 AC 36 ms
5,184 KB
testcase_03 AC 37 ms
5,184 KB
testcase_04 AC 38 ms
5,184 KB
testcase_05 AC 40 ms
5,184 KB
testcase_06 AC 27 ms
5,184 KB
testcase_07 AC 37 ms
5,184 KB
testcase_08 AC 37 ms
5,184 KB
testcase_09 AC 3 ms
5,184 KB
testcase_10 AC 3 ms
5,184 KB
testcase_11 AC 3 ms
5,184 KB
testcase_12 AC 3 ms
5,184 KB
testcase_13 AC 3 ms
5,184 KB
testcase_14 AC 3 ms
5,184 KB
testcase_15 AC 2 ms
5,184 KB
testcase_16 AC 3 ms
5,184 KB
testcase_17 AC 3 ms
5,184 KB
testcase_18 AC 3 ms
5,184 KB
testcase_19 AC 3 ms
5,184 KB
testcase_20 AC 3 ms
5,184 KB
testcase_21 AC 3 ms
5,184 KB
testcase_22 AC 3 ms
5,184 KB
testcase_23 AC 3 ms
5,184 KB
testcase_24 AC 2 ms
5,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long

signed main(){
    int n;
    cin >> n;
    int y[100010];
    int sum = 0;
    for(int i = 0;i < n;i++){
        cin >> y[i];
        sum += y[i];
    }

    int x[100010];
    for(int i = 0;i < n;i++){
        x[i] = sum-y[i]*(n-1);
    }

    cout << x[0];
    for(int i = 1;i < n;i++){
        cout << " " << x[i];
    }

    cout << endl; 

    return 0;

}
0