結果

問題 No.1131 Deviation Score
ユーザー shizimashizima
提出日時 2020-08-04 22:42:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 3,926 ms
コンパイル使用メモリ 199,988 KB
実行使用メモリ 4,368 KB
最終ジャッジ日時 2023-10-13 00:23:58
合計ジャッジ時間 4,188 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,368 KB
testcase_21 AC 1 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("O3")

#define ll long long
#define ld long double
#define fi first
#define se second
#define mp make_pair

#define pi pair<int,int>
#define pll pair<ll,ll>
#define vi vector<int>
#define vll vector<ll>
#define vpi vector<pair<int,int>>
#define vpll vector<pair<ll,ll>>

#define rep(i, n) for(ll i = 0; i < (n); ++i)
#define rep2(i, a, b) for(ll i = a; i <= (b); ++i)
#define rep3(i, a, b) for(ll i = a; i >= (b); --i)
#define all(v) (v).begin(), (v).end()
#define si(v) (int)(v).size()

using namespace std;

template <class T> using pq = priority_queue<T>;
template <class T> using pqg = priority_queue<T, vector<T>, greater<T>>;
template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }

constexpr ll MOD = 1000000007, MAX = 100005;

signed main()
{
  cout << fixed << setprecision(10);
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int n; cin >> n;
  vi x(n);
  rep(i, n) cin >> x[i];

  int sum = accumulate(all(x),0);
  int ave = sum / n;

  rep(i, n) cout << 50 - (ave - x[i]) / 2 << '\n';

  return (0);
}
0