結果
| 問題 |
No.1131 Deviation Score
|
| ユーザー |
fastmath
|
| 提出日時 | 2020-08-03 05:28:43 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 811 bytes |
| コンパイル時間 | 2,643 ms |
| コンパイル使用メモリ | 162,152 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 03:42:56 |
| 合計ジャッジ時間 | 3,626 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';
signed main() {
#ifdef HOME
freopen("input.txt", "r", stdin);
#else
#define endl '\n'
ios_base::sync_with_stdio(0); cin.tie(0);
#endif
int n;
cin >> n;
vector <int> x(n);
for (int i = 0; i < n; ++i)
cin >> x[i];
double sum = 0;
for (auto e : x)
sum += e;
double A = sum/n;
for (int i = 0; i < n; ++i) {
double d = 50 - (A-x[i])/2;
cout << (int)d << endl;
}
}
fastmath