#include <iostream>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;cin>>t;
int arr[12];
arr[0]=1;
for(int i=1;i<12;i++){
arr[i]=arr[i-1]*2;
}
while(t--){
int x;cin>>x;
if(x<=2){
cout<<2<<"\n"<<-1<<"\n";
}
else cout<<4<<"\n"<<-1<<"\n";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
228 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |