SRM 529 div1 med: MinskyMystery

問題 TopCoder Statistics - Problem Statement 解法 よくわからないので, とりあえずいろいろ実験するためのコードを書きます。 ll bag[5]; int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; cin >> N; bag[0] = N; bag[1]++; ll cnt = 1; while (1) { cout << bag[0] << " " << bag[1] << endl; bag[1]++; …