ABC369 A問題〜等差数列〜

ABC

解説動画

コード

#include 
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); ++i)

int main() {
    int a, b;
    cin >> a >> b;
    if (a > b)swap(a, b);

    if (a == b) {
        cout << 1 << endl;
        return 0;
    }

    if ((b - a) % 2 == 1) {
        cout << 2 << endl;
        return 0;
    }

    cout << 3 << endl;
    return 0;
}

コメント