#define for0(i, n) for (int i = 0; i < n; i++) #define for1(i, n) for (int i = 1; i <= n; i++) #define loop(i, a, b) for (int i = a; i < b; i++) ...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Educational Codeforces Round Round 86(Rated for Div.2)のA~Eまでの解説です。 今回も無事にA~Dまでの4完を達成しレートを伸ばすことができました*(ただ、レート1899と紫にあと1足りなかったのでかなり悔しかったです)。 操作1のみを用いてxとyの両方を0にする場合と ...