結果

問題 No.909 たぴの配置
ユーザー shop_oneshop_one
提出日時 2019-10-18 22:01:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 354 ms / 3,000 ms
コード長 445 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 59,612 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-06-25 16:57:42
合計ジャッジ時間 7,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 316 ms
6,400 KB
testcase_06 AC 354 ms
6,400 KB
testcase_07 AC 296 ms
6,272 KB
testcase_08 AC 312 ms
6,656 KB
testcase_09 AC 326 ms
6,400 KB
testcase_10 AC 296 ms
6,272 KB
testcase_11 AC 298 ms
6,272 KB
testcase_12 AC 315 ms
6,400 KB
testcase_13 AC 325 ms
6,400 KB
testcase_14 AC 298 ms
6,400 KB
testcase_15 AC 301 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> P;
signed main(){
  ll n,ans=10000000000000;
  cin >> n;
  ll x[n],y[n],tapi[n];
  for(int i=0;i<n;i++){
    cin >> x[i];
  }
  for(int i=0;i<n;i++){
    cin >> y[i];
    ans = min(x[i]+y[i],ans);
  }
  cout <<ans << endl;
  cout << "0\n";
  for(int i=0;i<n;i++){
    cout << min(x[i],ans)<<endl;
  }
  cout << ans << endl;
}
0