#include <iostream> using namespace std; int getint(){ char c;int temp=0; do{ c=getchar_unlocked(); }while(c<'0' || c>'9'); do{ temp=temp*10+c-'0'; c=getchar_unlocked(); }while(c>='0' && c<='9'); return temp; } int ile;int k,tab[1000000]; int x=0; int main(){ ile=getint(); for(int i=0;i<ile;i++){ tab[i]=getint(); if(tab[i]==1)x++; } if(x==0){ cout<<2<<endl<<2<<endl<<"1 2"; } else if(x==1){ cout<<1<<endl<<2<<endl<<"1 2"; } else{ cout<<0<<endl; cout<<2<<endl<<"1 2"; } 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 26 27 28 29 30 31 32 33 | #include <iostream> using namespace std; int getint(){ char c;int temp=0; do{ c=getchar_unlocked(); }while(c<'0' || c>'9'); do{ temp=temp*10+c-'0'; c=getchar_unlocked(); }while(c>='0' && c<='9'); return temp; } int ile;int k,tab[1000000]; int x=0; int main(){ ile=getint(); for(int i=0;i<ile;i++){ tab[i]=getint(); if(tab[i]==1)x++; } if(x==0){ cout<<2<<endl<<2<<endl<<"1 2"; } else if(x==1){ cout<<1<<endl<<2<<endl<<"1 2"; } else{ cout<<0<<endl; cout<<2<<endl<<"1 2"; } return 0; } |