結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー Shoji_pg_loveShoji_pg_love
提出日時 2021-03-31 14:25:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 165,956 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-14 19:07:04
合計ジャッジ時間 35,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
8,448 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
8,448 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
10,144 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 WA -
testcase_12 AC 2 ms
10,496 KB
testcase_13 WA -
testcase_14 AC 2 ms
10,496 KB
testcase_15 WA -
testcase_16 AC 2 ms
10,496 KB
testcase_17 WA -
testcase_18 AC 2 ms
10,016 KB
testcase_19 AC 2 ms
8,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int a,b,n,m; cin >> a >> b >> n >> m;
  
  if(a==b){
    cout << a << endl;
    return 0;
  }
  
  int mini=min(a,b);
   if(a>b){
    for(int i=0;a>0;i++){
      a-=n;
      b++;
      mini=max(min(a,b),mini);
    }
   }
    
    else{
    for(int i=0;b>0;i++){
      b-=m;
      a++;
      mini=max(min(a,b),mini);
      cout << mini << endl;
    }
  }
    
    cout << mini << endl;
}
0