#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int je = 0; while (n-->0) { int x; cin >> x; if (x == 1) ++je; if (je >= 2) break; } cout << (2 - je) << endl; cout << 2 << endl; cout << 1 << ' ' << 2 << endl; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int je = 0; while (n-->0) { int x; cin >> x; if (x == 1) ++je; if (je >= 2) break; } cout << (2 - je) << endl; cout << 2 << endl; cout << 1 << ' ' << 2 << endl; } |