結果
問題 |
No.1131 Deviation Score
|
ユーザー |
|
提出日時 | 2020-08-03 14:27:46 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 243 ms / 2,000 ms |
コード長 | 3,416 bytes |
コンパイル時間 | 3,562 ms |
コンパイル使用メモリ | 196,316 KB |
最終ジャッジ日時 | 2025-01-12 13:36:53 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 21 |
ソースコード
# include <bits/stdc++.h> # define rep(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) # define reps(i, n) for(int i=1, i##_len=(n); i<=i##_len; ++i) # define rrep(i, n) for(int i=((int)(n)-1); i>=0; --i) # define rreps(i, n) for(int i=((int)(n)); i>0; --i) # define range_for(i, b, e) for(int i=(b), i##_len=(e); i<i##_len; ++i) # define step(n) rep(_, n) # define ALL(x) (x).begin(), (x).end() # define RALL(x) (x).rbegin(), (x).rend() # define Unique(a) a.erase(unique(ALL(a)), a.end()) # define pb push_back # define len(x) ((int)(x).size()) # define optimize_cin() cin.tie(0); ios::sync_with_stdio(false) # define debug(x) std::cerr<<#x<<": "<<(x)<<endl; # define LINT_MAX (LLONG_MAX) # define LINT_MIN (LLONG_MIN) # define cauto const auto # define int long long # define float long double using namespace std; template <class Type> inline constexpr Type Square(Type x) { return x * x; } template <class Type> inline constexpr bool InRange(const Type& x, const Type& fst, const Type& lst) { return (fst <= x) && (x < lst); } template<class Integer> inline bool chmax(Integer &a, Integer b) { return a < b && (a = b, true); } template<class Integer> inline bool chmin(Integer &a, Integer b) { return a > b && (a = b, true); } template<class Integer>bool IsOdd(Integer &n) { return n & 1; } template<class Integer>bool IsEven(Integer &n) { return !(n & 1); } long long gcd(long long a, long long b) { while(b){ long long A = a; (a = b), (b = A % b); } return a; } long long lcm(long long a, long long b) { return a / gcd(a, b) * b; } int ctoi(const char c) { return ('0' <= c && c <= '9') ? (c - '0') : -1; } string YesNo(bool b) { return b ? "Yes" : "No"; } string YESNO(bool b) { return b ? "YES" : "NO"; } string yesno(bool b) { return b ? "yes" : "no"; } void _cin(){} template <class Head, class... Tail> void _cin(Head&& head, Tail&&... tail){ cin >> head; _cin(forward<Tail>(tail)...); } #define Cin(Type, ...) Type __VA_ARGS__; _cin(__VA_ARGS__) #define Cinv(Type, xs, n) vector<Type> xs(n); rep(i, n) cin >> xs[i] #define Cinv2(Type, xs, ys, n) vector<Type> xs(n), ys(n); rep(i, n) cin >> xs[i] >> ys[i] #define Cinv3(Type, xs, ys, zs, n) vector<Type> xs(n), ys(n), zs(n); rep(i, n) cin >> xs[i] >> ys[i] >> zs[i] #define Cinvv(Type, xs, h, w) vector<vector<Type>> xs(h, vector<int>(w)); rep(i, h) rep(j, w) cin >> xs[i][j] void Print() { cout << endl; } template <class Head, class... Tail> void Print(Head&& head, Tail&&... tail) { cout << head; if (sizeof...(tail) != 0) cout << " "; Print(forward<Tail>(tail)...); } template <class Type> void Print(vector<Type> &vec) { for (auto& a : vec) { cout << a; if (&a != &vec.back()) cout << " "; } cout << endl; } template <class Type> void Print(vector<vector<Type>> &df) { for (auto& vec : df) { Print(vec); } } void Debug() { cerr << endl; } template <class Head, class... Tail> void Debug(Head&& head, Tail&&... tail) { cerr << head; if (sizeof...(tail) != 0) cerr << " "; Debug(forward<Tail>(tail)...); } template <class Type> void Debug(vector<Type> &vec) { for (auto& a : vec) { cerr << a; if (&a != &vec.back()) cerr << " "; } cerr << endl; } template <class Type> void Debug(vector<vector<Type>> &df) { for (auto& vec : df) { Debug(vec); } } signed main() { Cin(int, N); Cinv(int, xs, N); float A = accumulate(ALL(xs), 0.0) / N; for_each(ALL(xs), [=](int x) { Print(floor(50.0 - (A - x) / 2.0)); }); return 0; }