結果

問題 No.846 メダル
ユーザー 👑 obakyanobakyan
提出日時 2019-07-07 10:47:10
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-07 00:43:38
合計ジャッジ時間 1,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <string>
#include <iostream>
#include <iomanip>
#include <numeric>
#include <set>
#define L64 long long
#define UL64 unsigned long long
#define MOD (1000000007LL)

int main(void)
{
  UL64 nmin, nmax;
  UL64 p, q, r;
  UL64 a, b, c;
  std::cin >> p >> q >> r;
  std::cin >> a >> b >> c;
  nmax = p * a;
  nmin = p * (a - 1ULL) + 1ULL;
  nmax = std::min(nmax, q * (a + b));
  nmin = std::max(nmin, q * (a + b - 1ULL) + 1ULL);
  nmax = std::min(nmax, r * (a + b + c));
  nmin = std::max(nmin, r * (a + b + c - 1ULL) + 1ULL);
  if (nmin > nmax){
    std::cout << -1 << std::endl;
  } else {
    std::cout << nmin << " " << nmax << std::endl;
  }
}
0