結果
問題 | No.846 メダル |
ユーザー | illanasty |
提出日時 | 2021-12-09 19:22:19 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,202 bytes |
コンパイル時間 | 1,656 ms |
コンパイル使用メモリ | 140,988 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 11:54:00 |
合計ジャッジ時間 | 2,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
ソースコード
#include <algorithm> #include <cstring> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <math.h> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; using ull = unsigned long long; using ll = long long; using ld = long double; #define all(v) v.begin(), v.end() #define rep(i, n) for (ll i = 0; i < n; ++i) #define rep2(i, n, m) for (ll i = n; i <= m; ++i) #define rep3(i, n, m) for (ll i = n; i >= m; --i) template<class T> using pqg = priority_queue<T, vector<T>, greater<T>>; template<class T> using pq = priority_queue<T>; template<class S, class T> inline bool chmax(S &a, T b) { if (a < b) { a = b; return true; } return false; } template<class S, class T> inline bool chmin(S &a, T b) { if (a > b) { a = b; return true; } return false; } int main() { ll p, q, r; ll a, b, c; cin >> p >> q >> r; cin >> a >> b >> c; b += a; c += b; ll mx = min({p * a, q * b, c * r}); ll mn = max({p * (a-1) + 1, q * (b-1) + 1, r * (c-1) + 1}); if (mn > mx) cout << -1 << endl; else cout << mn << " " << mx << endl; return 0; }