Submission #3285

# Submission time Handle Problem Language Result Execution time Memory
3285 2013-08-30T10:22:08 Z ascamper 0 = not cute / 1 = cute (kriii1_0) C++
0 / 1
0 ms 1672 KB
#include <iostream>
using namespace std;

int bit[101];
int isCute = 0;;

int main(){
	int pNum;
	cin >> pNum;
	
	for(int i = 0 ; i < pNum ; i++){
		cin>>bit[i];
		isCute++;
	}
	
	if(isCute > pNum/2)
		cout<<"Junhee is cute!"<<endl;
	else
		cout<<"Junhee is not cute!"<<endl;
	
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 1672 KB Output isn't correct
2 Halted 0 ms 0 KB -