結果
問題 | No.909 たぴの配置 |
ユーザー | yosupot |
提出日時 | 2019-10-18 21:24:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 278 ms / 3,000 ms |
コード長 | 1,852 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 203,092 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 14:47:56 |
合計ジャッジ時間 | 7,455 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 255 ms
6,940 KB |
testcase_06 | AC | 273 ms
6,940 KB |
testcase_07 | AC | 242 ms
6,940 KB |
testcase_08 | AC | 253 ms
6,944 KB |
testcase_09 | AC | 271 ms
6,940 KB |
testcase_10 | AC | 251 ms
6,944 KB |
testcase_11 | AC | 248 ms
6,940 KB |
testcase_12 | AC | 278 ms
6,940 KB |
testcase_13 | AC | 274 ms
6,940 KB |
testcase_14 | AC | 260 ms
6,940 KB |
testcase_15 | AC | 256 ms
6,940 KB |
ソースコード
//#pragma GCC optimize("Ofast") //#pragma GCC target("avx") //#undef LOCAL #include <bits/stdc++.h> using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); } template <class T> using V = vector<T>; template <class T> using VV = V<V<T>>; #ifdef LOCAL struct PrettyOS { ostream& os; bool first; template <class T> auto operator<<(T&& x) { if (!first) os << ", "; first = false; os << x; return *this; } }; template <class... T> void dbg0(T&&... t) { (PrettyOS{cerr, true} << ... << t); } #define dbg(...) \ do { \ cerr << __LINE__ << " : " << #__VA_ARGS__ << " = "; \ dbg0(__VA_ARGS__); \ cerr << endl; \ } while (false); #else #define dbg(...) #endif template <class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { return os << "P(" << p.first << ", " << p.second << ")"; } template <class T> ostream& operator<<(ostream& os, const V<T>& v) { os << "["; for (auto d : v) os << d << ", "; return os << "]"; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int n; cin >> n; V<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 ans = TEN(18); for (int i = 0; i < n; i++) { ans = min(ans, x[i] + y[i]); } cout << ans << endl; cout << 0 << endl; for (int i = 0; i < n; i++) { cout << min(ans, x[i]) << endl; } cout << ans << endl; return 0; }