結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー こばゆ
提出日時 2021-03-31 14:15:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 69,168 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-14 18:57:55
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 23 WA * 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;
    if (a>b) {
      std::cout << b+(a-b)/(n+1) << '\n';
    }else{
      std::cout << a+(b-a)/(m+1) << '\n';
    }
  return 0;
}
0