結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー こばゆ
提出日時 2021-03-31 14:09:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 304 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 69,224 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 18:47:05
合計ジャッジ時間 30,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other AC * 23 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <algorithm>

int main(int argc, char const *argv[]) {
  int a,b,n,m;
  std::cin >> a>>b>>n>>m;
  while (a-b>n || b-a>m) {
    if (a>b) {
      a-=n;
      b+=1;
    }else{
      b-=m;
      a+=1;
    }
  }
  std::cout << std::min(a,b) << '\n';
  return 0;
}
0