結果

問題 No.1131 Deviation Score
ユーザー T.StreamT.Stream
提出日時 2021-03-15 21:21:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 203,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 10:03:03
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 119 ms
5,248 KB
testcase_03 AC 55 ms
5,248 KB
testcase_04 AC 111 ms
5,248 KB
testcase_05 AC 42 ms
5,248 KB
testcase_06 AC 120 ms
5,248 KB
testcase_07 AC 60 ms
5,248 KB
testcase_08 AC 106 ms
5,248 KB
testcase_09 AC 41 ms
5,248 KB
testcase_10 AC 103 ms
5,248 KB
testcase_11 AC 105 ms
5,248 KB
testcase_12 AC 93 ms
5,248 KB
testcase_13 AC 119 ms
5,248 KB
testcase_14 AC 26 ms
5,248 KB
testcase_15 AC 25 ms
5,248 KB
testcase_16 AC 107 ms
5,248 KB
testcase_17 AC 45 ms
5,248 KB
testcase_18 AC 134 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 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