結果

問題 No.2239 Friday
ユーザー hiro71687k
提出日時 2023-03-10 21:36:47
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 3,264 ms
コンパイル使用メモリ 250,952 KB
最終ジャッジ日時 2025-02-11 07:54:05
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=155550555555555;
ll mod=1000000007;
int main(){
    ll a,b;
    cin >> a >> b;
    ll ans=inf;
    for (ll i = 0; i <=a; i++)
    {
        for (ll j = 0; j <=b; j++)
        {
            if (i>b||j>a)
            {
                continue;
            }
            if (i+b-j!=b||j+a-i!=a)
            {
                continue;
            }
            ans=min(ans,abs(i+j-(a+b)+i+j));
        }
    }
    cout << ans << endl;
}
0