답안 #3285

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
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;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1672 KB Output isn't correct
2 Halted 0 ms 0 KB -