結果

問題 No.909 たぴの配置
ユーザー m1025o1184tm1025o1184t
提出日時 2019-11-21 21:18:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 172,152 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-11 01:18:02
合計ジャッジ時間 9,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
#define all(a) (a).begin(),(a).end()
using namespace std;
typedef long long ll;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n;
	cin >> n;
	vector<int> X(n); vector<int> Y(n);
	vector<int> res(n);
	rep(i, n) {
		cin >> X[i];
	}
	rep(i, n) {
		cin >> Y[i];
		res[i] = X[i] + Y[i];
	}
	vector<int> anstapi(n + 2);
	sort(all(res));
	anstapi[0] = 0;
	for (int i = 1; i < n + 1; ++i) {
		if (abs(res[0] - X[i - 1]) >= abs(res[0] - Y[i - 1])) {
			anstapi[i] = Y[i - 1];
		}
		else {
			anstapi[i] = X[i - 1];
		}
	}
	anstapi[n + 1] = res[0];
	cout << anstapi[n + 1] << endl;
	rep(i, n + 2) {
		cout << anstapi[i] << endl;
	}
	return 0;
}
0