#include <bits/stdc++.h>
using namespace std;
#define REP(i, x) for( int i = 0; i < x; i++ )
int n;
int liscie = 0;
void wczytaj(){
cin >> n;
int a;
REP(i, n){
cin >> a;
if( a == 1 ) liscie++;
}
}
int main(){
ios_base::sync_with_stdio(0);
wczytaj();
cout << max(2-liscie, 0) << endl;
cout << 2 << endl;
cout << 1 << " " << 2 << endl;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #include <bits/stdc++.h> using namespace std; #define REP(i, x) for( int i = 0; i < x; i++ ) int n; int liscie = 0; void wczytaj(){ cin >> n; int a; REP(i, n){ cin >> a; if( a == 1 ) liscie++; } } int main(){ ios_base::sync_with_stdio(0); wczytaj(); cout << max(2-liscie, 0) << endl; cout << 2 << endl; cout << 1 << " " << 2 << endl; return 0; } |
English