結果

問題 No.1131 Deviation Score
ユーザー T.StreamT.Stream
提出日時 2021-03-15 21:21:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 194,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 00:38:42
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 112 ms
5,376 KB
testcase_03 AC 50 ms
5,376 KB
testcase_04 AC 101 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 107 ms
5,376 KB
testcase_07 AC 62 ms
5,376 KB
testcase_08 AC 93 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 89 ms
5,376 KB
testcase_11 AC 105 ms
5,376 KB
testcase_12 AC 84 ms
5,376 KB
testcase_13 AC 110 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 99 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 130 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n,i,a,p;
	cin >> n;
	vector<int> x(n);
	a=0;
	for(i=0; i<n; i++){
		cin >> x[i];
		a+=x[i];
	}
	for(i=0; i<n; i++){
		if(x[i]*n>=a){
			cout << 50+((x[i]*n)-a)/(2*n) << endl;
		}else{
			cout << 50-(a-(x[i]*n)+(2*n-1))/(2*n) << endl;
		}
	}
	return 0;
}
0