結果

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define ld long double
#define ll long long
#define ALL(a)  (a).begin(),(a).end()
#define ALLR(a)  (a).rbegin(),(a).rend()
#define spa << " " <<
#define MP make_pair
#define test cout<<"test"<<endl;
#define fi first
#define se second
const ll MOD = 1e9+7;
//const ll MOD = 998244353;
const ll INF = 1e18;
const ll zero=0;
using P = pair<ll, ll>;
void chmin(ll &a,ll b){if(a>b)a=b;}
void chmax(ll &a,ll b){if(a<b)a=b;}
void pmod(ll &a,ll b){a=(a+b)%MOD;}
void pmod(ll &a,ll b,ll c){a=(b+c)%MOD;}
void qmod(ll &a,ll b){a=(a*b)%MOD;}
void qmod(ll &a,ll b,ll c){a=(b*c)%MOD;}
void ans1(bool x){if(x) cout<<"Yes"<<endl;else cout<<"No"<<endl;}
void ans2(bool x){if(x) cout<<"YES"<<endl;else cout<<"NO"<<endl;}
void ans3(bool x){if(x) cout<<"Yay!"<<endl;else cout<<":("<<endl;}
void ans(bool x,ll y,ll z){if(x)cout<<y<<endl;else cout<<z<<endl;}
void ans(bool x,string y,string z){if(x)cout<<y<<endl;else cout<<z<<endl;}   
ll gcd(ll x,ll y){ll r;while((r=x%y)!=0){x=y;y=r;}return y;}

int main(){
  ll i,j,o;
  ll res=0,res1=INF,res2=-INF,buf=0,buf1=0,buf2=0,buf3=0,buf4=0,sum=0;
  bool judge = true;
  ll p,q,r,a,b,c;cin>>p>>q>>r>>a>>b>>c;
  ll s,t;
  s=(a-1)*p+1;t=a*p;
  //cout<<s spa t<<endl;
  b=a+b;
  chmax(s,q*(b-1)+1);
  chmin(t,b*q);
  //cout<<s spa t<<endl;
  c=b+c;
  chmax(s,r*(c-1)+1);
  chmin(t,c*r);
  //cout<<s spa t<<endl;
  if(s>t)cout<<-1<<endl;
  else cout<<s spa t<<endl;

  return 0;
}
0