結果
| 問題 | No.1131 Deviation Score |
| ユーザー |
|
| 提出日時 | 2021-08-25 23:23:51 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 73 ms / 2,000 ms |
| コード長 | 311 bytes |
| 記録 | |
| コンパイル時間 | 1,245 ms |
| コンパイル使用メモリ | 213,244 KB |
| 実行使用メモリ | 7,968 KB |
| 最終ジャッジ日時 | 2026-06-22 20:30:12 |
| 合計ジャッジ時間 | 3,383 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,l,r) for(int i=(l);i<(r);++i)
typedef long long ll;
int main(){
int n; cin>>n;
vector<int> a(n);
rep(i,0,n) cin>>a[i];
int r=accumulate(a.begin(),a.end(),0);
double ave=r/(n+0.0);
rep(i,0,n){
int ans=50-((ave-a[i])/2);
cout<<ans<<endl;
}
}