結果

問題 No.909 たぴの配置
ユーザー sbitesbite
提出日時 2019-10-18 21:49:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 372 ms / 3,000 ms
コード長 949 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 160,112 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 15:32:32
合計ジャッジ時間 7,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 366 ms
5,376 KB
testcase_06 AC 372 ms
5,376 KB
testcase_07 AC 355 ms
5,376 KB
testcase_08 AC 363 ms
5,376 KB
testcase_09 AC 367 ms
5,376 KB
testcase_10 AC 351 ms
5,376 KB
testcase_11 AC 347 ms
5,376 KB
testcase_12 AC 361 ms
5,376 KB
testcase_13 AC 370 ms
5,376 KB
testcase_14 AC 348 ms
5,376 KB
testcase_15 AC 354 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define _overload3(_1, _2, _3, name, ...) name
#define _rep(i, n) repi(i, 0, n)
#define repi(i, a, b) for (ll i = (ll)(a); i < (ll)(b); ++i)
#define rep(...) _overload3(__VA_ARGS__, repi, _rep, )(__VA_ARGS__)
#define ll long long
#define lld long double
#define ALL(x) x.begin(), x.end()
#ifdef DEBUG
#define line() cerr << "[" << __LINE__ << "] ";
#define dump(i) cerr << #i ": " << i << " ";
#define dumpl(i) cerr << #i ": " << i << endl;
#else
#define line(i)
#define dump(i)
#define dumpl(i)
#endif
using namespace std;
int main(int argc, char const *argv[])
{
    int n;
    cin >> n;
    int x[n], y[n];
    rep(i, n) cin >> x[i];
    rep(i, n) cin >> y[i];
    int dist = 2 * 1e7;
    rep(i, n)
    {
        dist = min(dist, x[i] + y[i]);
    }
    cout << dist << endl;
    cout << 0 << endl;
    rep(i, n)
    {

        cout << min(x[i], abs(dist - y[i])) << endl;
    }
    cout << dist << endl;
    return 0;
}
0