結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー mmn15277198mmn15277198
提出日時 2021-04-01 21:52:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 3,110 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 94,964 KB
実行使用メモリ 34,888 KB
最終ジャッジ日時 2023-08-23 05:56:14
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
34,888 KB
testcase_01 AC 11 ms
34,836 KB
testcase_02 AC 12 ms
34,808 KB
testcase_03 AC 11 ms
34,596 KB
testcase_04 AC 13 ms
34,744 KB
testcase_05 AC 12 ms
34,808 KB
testcase_06 AC 11 ms
34,700 KB
testcase_07 AC 11 ms
34,744 KB
testcase_08 AC 12 ms
34,740 KB
testcase_09 AC 12 ms
34,684 KB
testcase_10 AC 12 ms
34,660 KB
testcase_11 AC 11 ms
34,704 KB
testcase_12 AC 12 ms
34,752 KB
testcase_13 AC 12 ms
34,724 KB
testcase_14 AC 11 ms
34,652 KB
testcase_15 AC 11 ms
34,632 KB
testcase_16 AC 11 ms
34,772 KB
testcase_17 AC 11 ms
34,572 KB
testcase_18 AC 11 ms
34,744 KB
testcase_19 AC 12 ms
34,716 KB
testcase_20 AC 11 ms
34,836 KB
testcase_21 AC 11 ms
34,872 KB
testcase_22 AC 12 ms
34,740 KB
testcase_23 AC 12 ms
34,636 KB
testcase_24 AC 11 ms
34,744 KB
testcase_25 AC 11 ms
34,600 KB
testcase_26 AC 11 ms
34,612 KB
testcase_27 AC 11 ms
34,572 KB
testcase_28 AC 12 ms
34,812 KB
testcase_29 AC 12 ms
34,788 KB
testcase_30 AC 12 ms
34,840 KB
testcase_31 AC 13 ms
34,672 KB
testcase_32 AC 21 ms
34,800 KB
testcase_33 AC 12 ms
34,640 KB
testcase_34 AC 12 ms
34,876 KB
testcase_35 AC 12 ms
34,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <map>
#include <stdio.h>
#include <math.h>
#include <iomanip>
#include <queue>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double lld;

#define rep(i,n) for(int i = 0; i < (n); i++)
#define REP(i,x,n) for(int i = (x); i < (n); i++)
#define pb push_back 
#define eb emplace_back 
#define fi first
#define se second
#define all(x) x.begin() , x.end()
#define vi vector<int>
#define vll vector<ll>
#define vb vector<bool>

const static int INF = 1001001001;
const static ll LINF = 1001001001001001001LL;
const static lld PI = 3.1415926535897932384626L;
const static int MOD = int(1e9) + int(7);
//const static ll MOD = ll(1e9) + ll(7);
//const static int MOD = 998244353;
//const static int MOD = 998244353;
const static int MX = 2020202;

template < typename T > bool chmin (T &a , T b) { if (a > b) { a = b; return true; } else { return false; } }
template < typename T > bool chmax (T &a , T b) { if (a < b) { a = b; return true; } else { return false; } }
ll gcd (ll a , ll b) { if (a < b) swap(a , b); if (a % b == 0) return b; else return gcd (b , a % b); }
ll lcm (ll a , ll b) { return (a / gcd (a , b) * b); }
int keta (ll x) { int ret = 0; while(x) { ret++; x /= 10; } return ret; }
inline int in () { int x; scanf("%d" , &x); return x; }
inline ll lin () { ll x; scanf("%lld" , &x); return x; }
inline string sin () { string s; cin >> s; return s; }

void io_setup () {
    cout << fixed << setprecision(15);
    //cin.tie(0);
    //ios::sync_with_stdio(false);
}

bool is_prime (ll x) {
    if (x == 2 || x == 3 || x == 5 || x == 7) {
        return true;
    }
    for (ll i = 3; i * i <= x; i++) {
        if (x % i == 0) {
            return false;
        }
    }
    return true;
}

vb prime_table(MX , true);
void prime () {
    prime_table[0] = prime_table[1] = false;
    for (int i = 2; i < MX; i++) {
        for(int j = i + i; j < MX; j += i) {
            prime_table[j] = false;
        }
    }
}

ll modpow (ll x , ll p) {
    ll ret = 1;
    while (p > 0) {
        if (p & 1) ret = ret * x % MOD;
        x = x * x % MOD;
        p >>= 1;
    }
    return ret;
}

vector<ll> fact(MX , 0);
vector<ll> factinv(MX , 0);

void calc_fact () {
    fact[0] = 1;
    for (int i = 1; i < MX; i++) fact[i] = 1LL * i * fact[i - 1] % MOD;
    for (int i = 0; i < MX; i++) factinv[i] = modpow(fact[i], MOD - 2);
}

ll nCk (ll n , ll k) {
    return fact[n] * factinv[k] % MOD * factinv[n - k] % MOD;
}

ll modsub (ll a , ll b) {
    if (a >= b) return (a - b) % MOD;
    else return (MOD + a - b) % MOD;
}

/*
//memo
v.erase(unique(all(v)), v.end());
*/

void solve() {
    ll a = lin();
    ll b = lin();
    ll n = lin();
    ll m = lin();
    ll ans , x;
    if(a >= b) {
        x = (a - b) / (1 + n);
        ans = min(a - x , b + x);
    } else {
        x = (b - a) / (1 + m);
        ans = min(a + x , b - x);
    }
    cout << ans << endl;
    return;
}

int main () {
    io_setup();
    //prime();
    //calc_fact();
    solve();
    return 0;
}





0