結果
問題 |
No.846 メダル
|
ユーザー |
![]() |
提出日時 | 2019-07-05 22:21:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,032 bytes |
コンパイル時間 | 1,572 ms |
コンパイル使用メモリ | 166,348 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 22:12:23 |
合計ジャッジ時間 | 2,150 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> pii; typedef long long ll; typedef vector<int> vi; #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define rep(i,n) rep2(i,0,n) #define rep2(i,m,n) for(int i=m;i<(n);i++) #define ALL(c) (c).begin(),(c).end() #define dump(x) cout << #x << " = " << (x) << endl constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); } template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { os<<"("<<p.first<<","<<p.second<<")"; return os; } template<class T> ostream& operator<<(ostream& os, const vector<T>& v) { os<<"{"; rep(i, v.size()) { if (i) os<<","; os<<v[i]; } os<<"}"; return os; } int main() { ll P, Q, R, A, B, C; cin >> P >> Q >> R >> A >> B >> C; B += A; C += B; ll m = max({(A-1) * P + 1, (B-1) * Q + 1, (C-1) * R + 1}); ll M = min({A * P, B * Q, C * R}); if (m <= M) { cout << m << " " << M << endl; } else { cout << "-1" << endl; } return 0; }