#include<bits/stdc++.h> using namespace std; int ones,n,tmp; int main(){ ios_base::sync_with_stdio( 0 ); cin.tie( 0 ); cin>>n; for(int i=0;i<n;i++) { cin>>tmp; if( tmp == 1 ) ones++; } if(ones == 0) cout<<"2"<<endl<<"2"<<endl<<"1 2"; else if(ones == 1) cout<<"1"<<endl<<"2"<<endl<<"1 2"; else if(ones >= 2) cout<<"0"<<endl<<"2"<<endl<<"1 2"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include<bits/stdc++.h> using namespace std; int ones,n,tmp; int main(){ ios_base::sync_with_stdio( 0 ); cin.tie( 0 ); cin>>n; for(int i=0;i<n;i++) { cin>>tmp; if( tmp == 1 ) ones++; } if(ones == 0) cout<<"2"<<endl<<"2"<<endl<<"1 2"; else if(ones == 1) cout<<"1"<<endl<<"2"<<endl<<"1 2"; else if(ones >= 2) cout<<"0"<<endl<<"2"<<endl<<"1 2"; return 0; } |