結果

問題 No.1131 Deviation Score
ユーザー warm4C0
提出日時 2022-07-28 22:41:04
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 158,508 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 12:56:50
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
	int n;
	cin >> n;

	int x[n];
	for (int i = 0; i < n; i++) {
		cin >> x[i];
	}

	int total = 0;
	for (int i = 0; i < n; i++) {
		total += x[i];
	}

	for (int i = 0; i < n; i++) {
		cout << 50-((total/n)-x[i])/2 << endl;
	}

	return 0;
}
0