結果

問題 No.2227 King Kraken's Attack
ユーザー cho435cho435
提出日時 2023-03-08 18:30:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 194,400 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 09:51:46
合計ジャッジ時間 5,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 177 ms
6,940 KB
testcase_15 AC 173 ms
6,944 KB
testcase_16 AC 182 ms
6,944 KB
testcase_17 AC 148 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 50 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 68 ms
6,944 KB
testcase_25 WA -
testcase_26 AC 167 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 12 ms
6,944 KB
testcase_29 AC 6 ms
6,944 KB
testcase_30 AC 89 ms
6,940 KB
testcase_31 AC 15 ms
6,940 KB
testcase_32 AC 5 ms
6,940 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 7 ms
6,940 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 WA -
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(ll i=0;i<ll(n);i++)

int main(){
  ll h,w,la,lb,ka,kb;
  cin>>h>>w>>la>>lb>>ka>>kb;
  ll ans=1e18;
  rep(a,h+1){
    if(a>ans) break;
    ll up=1e9;
    ll dw=-1;
    while(up-dw>1){
      ll md=(up+dw)/2;
      ll tmp=min(h,la*a)*min(w,lb*md)+ka*a+kb*md;
      if(tmp<h*w) dw=md;
      else up=md;
    }
    ans=min(ans,a+up);
  }
  cout<<ans<<endl;
}
0