제출 #154756

#제출 시각아이디문제언어결과실행 시간메모리
154756crisente235올림픽 (KOI13_olympic)C++14
20 / 100
3 ms508 KiB
#include<iostream>

using namespace std;

#define MAX_NUM 1010

int country[MAX_NUM][4];

int main() {
	int num;
	int cn;
	cin >> num >> cn;
	int degree=1;
	for (int i = 0; i < num; i++) {
		for (int j = 0; j < 4; j++) {
			cin>>country[i][j];
		}
	}
	for (int i = 0; i < num; i++) {
		if (cn == country[i][0]){
			cn = i;
		}
	}
	for (int i = 0; i < num; i++) {
		if (country[i][1] > country[cn][1]) {
			degree++;
		}
		else if (country[i][1] == country[cn][1] && country[i][2] > country[cn][2]) {
			degree++;
		}
		else if (country[i][1] == country[cn][1] && country[i][2] == country[cn][2] && country[i][3] > country[cn][3]) {
			degree++;
		}
		
	}
	cout << degree;

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...