Submission #649378

# Submission time Handle Problem Language Result Execution time Memory
649378 2022-10-10T06:56:12 Z DangerNoodle7591 Binary Subsequences (info1cup17_binary) C++17
0 / 100
1 ms 340 KB
#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 -