結果

問題 No.1131 Deviation Score
ユーザー HoyHoyCharhangHoyHoyCharhang
提出日時 2020-08-29 16:47:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 165,744 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-10 12:30:35
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
4,376 KB
testcase_01 AC 4 ms
4,380 KB
testcase_02 AC 125 ms
4,376 KB
testcase_03 AC 58 ms
4,376 KB
testcase_04 AC 113 ms
4,376 KB
testcase_05 AC 43 ms
4,376 KB
testcase_06 AC 122 ms
4,380 KB
testcase_07 AC 59 ms
4,380 KB
testcase_08 AC 108 ms
4,376 KB
testcase_09 AC 41 ms
4,380 KB
testcase_10 AC 103 ms
4,376 KB
testcase_11 AC 109 ms
4,376 KB
testcase_12 AC 95 ms
4,376 KB
testcase_13 AC 122 ms
4,376 KB
testcase_14 AC 27 ms
4,376 KB
testcase_15 AC 27 ms
4,376 KB
testcase_16 AC 110 ms
4,376 KB
testcase_17 AC 45 ms
4,380 KB
testcase_18 AC 142 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,s,n) for (int i = s; i < (n); ++i)
using namespace std;
using ll = long long;
using P = pair<int,int>;
using field = vector<vector<int>>;

int main() {
  ll n;
  cin >> n;
  vector<ll> x(n);
  ll a = 0;
  rep(i,0,n) {cin >> x[i]; a += x[i];}
  rep(i,0,n) {
    ll ans = n * (100 + x[i]) - a;
    ans /= 2*n;
    cout << ans << endl;
  }
  return 0;
}
0