結果

問題 No.909 たぴの配置
ユーザー yakkiyakki
提出日時 2019-10-18 21:49:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 849 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 88,680 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 15:32:23
合計ジャッジ時間 9,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 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 AC 354 ms
5,376 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
using namespace std;
 
#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592
 
using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;



int main(){
	int N; cin >> N;
	vector<int> X(N),Y(N);
	rep(i,N) cin >> X[i];
	int M = 0;
	rep(i,N){
		cin >> Y[i];
		M = max(X[i]+Y[i],M);
	}
	vector<int> ans(N+2);
	ans[N+1] = M;
	rep(i,N){
		ans[i+1] = min(X[i],M);
	}
	cout << M << endl;
	rep(i,N+2){
		cout << ans[i] << endl;
	}
	
}
0