結果
問題 | No.909 たぴの配置 |
ユーザー | m1025o1184t |
提出日時 | 2019-11-21 21:01:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 1,762 ms |
コンパイル使用メモリ | 173,428 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 00:53:15 |
合計ジャッジ時間 | 9,879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 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 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);++i) #define all(a) (a).begin(),(a).end() using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<int> X(n); vector<int> Y(n); vector<int> res(n); rep(i, n) { cin >> X[i]; } rep(i, n) { cin >> Y[i]; res[i] = X[i] + Y[i]; } vector<int> anstapi(n + 2); sort(all(res)); sort(all(X)); anstapi[0] = 0; for (int i = 1; i < n + 1; ++i) { anstapi[i] = X[0]; } anstapi[n + 1] = res[0]; cout << anstapi[n + 1] << endl; rep(i, n + 2) { cout << anstapi[i] << endl; } return 0; }