けんちょんの競プロ精進記録

競プロの精進記録や小ネタを書いていきます

AtCoder ABC 074 A - Bichrome Cells (灰色, 100 点)

これは簡単!

問題概要

 N \times N のマス目があって、それぞれ白黒に塗られている。 A マスが白色であるとき、黒色は何マスか?

解法

全部で  N \times N マスがあるので、黒色マスの個数は  N \times N - A となる。

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N, A;
    cin >> N >> A;
    cout << N * N - A << endl;
}