結果
問題 | No.909 たぴの配置 |
ユーザー | ganariya |
提出日時 | 2019-10-18 21:40:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 377 ms / 3,000 ms |
コード長 | 1,535 bytes |
コンパイル時間 | 1,480 ms |
コンパイル使用メモリ | 143,460 KB |
実行使用メモリ | 6,656 KB |
最終ジャッジ日時 | 2024-06-25 15:16:56 |
合計ジャッジ時間 | 7,399 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 2 ms
5,376 KB |
testcase_05 | AC | 361 ms
6,272 KB |
testcase_06 | AC | 377 ms
6,656 KB |
testcase_07 | AC | 346 ms
6,144 KB |
testcase_08 | AC | 366 ms
6,272 KB |
testcase_09 | AC | 374 ms
6,528 KB |
testcase_10 | AC | 351 ms
6,144 KB |
testcase_11 | AC | 348 ms
6,016 KB |
testcase_12 | AC | 354 ms
6,272 KB |
testcase_13 | AC | 376 ms
6,528 KB |
testcase_14 | AC | 352 ms
6,144 KB |
testcase_15 | AC | 346 ms
6,016 KB |
ソースコード
//include //------------------------------------------ #include <vector> #include <list> #include <map> #include <unordered_map> #include <climits> #include <set> #include <unordered_set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <queue> #include <random> #include <complex> #include <regex> #include <locale> #include <random> #include <type_traits> using namespace std; #define SHOW_VECTOR(v) {std::cerr << #v << "\t:";for(const auto& xxx : v){std::cerr << xxx << " ";}std::cerr << "\n";} #define SHOW_MAP(v){std::cerr << #v << endl; for(const auto& xxx: v){std::cerr << xxx.first << " " << xxx.second << "\n";}} using LL = long long; //------------------------------------------ //------------------------------------------ int main() { int N; cin >> N; vector<LL> X(N), Y(N); for (int i = 0; i < N; i++) cin >> X[i]; for (int i = 0; i < N; i++) cin >> Y[i]; LL minV = LONG_LONG_MAX; for (int i = 0; i < N; i++) minV = min(minV, X[i] + Y[i]); cout << minV << endl; cout << 0 << endl; for (int i = 0; i < N; i++) { if (X[i] <= minV) cout << X[i] << endl; else cout << minV << endl; } cout << minV << endl; return 0; }