結果

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

ソースコード

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 << '\n';
    }else{
      std::cout << a+(b-a)/m << '\n';
    }
  return 0;
}
0