結果
問題 | No.909 たぴの配置 |
ユーザー | Wataruaoki |
提出日時 | 2019-10-19 12:15:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,269 bytes |
コンパイル時間 | 692 ms |
コンパイル使用メモリ | 87,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 00:29:20 |
合計ジャッジ時間 | 5,782 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 61 ms
5,376 KB |
testcase_15 | WA | - |
コンパイルメッセージ
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); | ~~~~~^~~~~~~~~~~~~
ソースコード
#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]); printf("%d\n", d); return 0; }