結果

問題 No.909 たぴの配置
ユーザー WataruaokiWataruaoki
提出日時 2019-10-19 12:17:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 67 ms / 3,000 ms
コード長 1,284 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 86,800 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 00:32:37
合計ジャッジ時間 3,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 63 ms
5,376 KB
testcase_06 AC 66 ms
5,376 KB
testcase_07 AC 61 ms
5,376 KB
testcase_08 AC 65 ms
5,376 KB
testcase_09 AC 67 ms
5,376 KB
testcase_10 AC 61 ms
5,376 KB
testcase_11 AC 61 ms
5,376 KB
testcase_12 AC 65 ms
5,376 KB
testcase_13 AC 67 ms
5,376 KB
testcase_14 AC 61 ms
5,376 KB
testcase_15 AC 61 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:49:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |     int n; scanf("%d", &n);
      |            ~~~~~^~~~~~~~~~
main.cpp:51:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   51 |     REP(i, n) scanf("%d", X + i);
      |               ~~~~~^~~~~~~~~~~~~
main.cpp:52:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   52 |     REP(i, n) scanf("%d", Y + i);
      |               ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <limits>
#include <cfenv>
#include <cmath>
#include <algorithm>
#include <array>
#include <bitset>
#include <cstring>
#include <map>
#include <stack>
#include <set>
#include <tuple>
#include <queue>
#include <vector>
#include <cmath>
#include <random>
#include <math.h>
#include <random>
#include <functional>


#define FOR(i, a, b) for(int (i) = (a); (i) < (b); ++(i))
#define REP(i, n) FOR(i, 0, n)
#define rREP(i, n) for(int (i) = (n) - 1; (i) >= 0; --(i))
#define ALL(TheArray) TheArray.begin(), TheArray.end()

using lli = long long int;
using pii = std::pair<int, int>;

template <class T> inline bool chmax(T& a, T b){
    if(a < b){a = b; return true;}
    return false;
}
template <class T> inline bool chmin(T& a, T b){
    if(a > b){a = b; return true;}
    return false;
}


// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



constexpr int inf = 2e9;
constexpr int MAX_SIZE = 2e5 + 10;
int X[MAX_SIZE], Y[MAX_SIZE];

int main(void){
    int n; scanf("%d", &n); 
    int N = n + 2;
    REP(i, n) scanf("%d", X + i);
    REP(i, n) scanf("%d", Y + i);
    int d = inf;
    REP(i, n) chmin(d, X[i]+Y[i]);

    printf("%d\n0\n", d);
    REP(i, n) printf("%d\n", X[i] < d ? X[i] : d);
    printf("%d\n", d);
    

  



    


    return 0;
}
0