답안 #8988

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
8988 2014-09-27T10:17:16 Z effserv Penalty calculation (kriii2_PE) C++
0 / 4
0 ms 1088 KB
#include <cstdio>

using namespace std;


int main()
{
	int n, maxt = 21000000,maxs = 0,f;
	scanf("%d", &n);

	for (int i = 1; i <= n; i++)
	{
		int t, s;
		scanf("%d%d", &t, &s);


			if (maxs == s)
			{
				if (maxt > t)
				{
					maxt = t;
					f = i;
				}
			}
			else
			{
				maxs = s;
				maxt = 210000000;
				if (maxt > t)
				{
					maxt = t;
					f = i;
				}
			}
			
		
	}

	if (maxs == 0)
	{
		printf("%d\n", 0);
		return 0;
	}

	printf("%d\n", maxt + 20 * (f - 1));


	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 1088 KB Output is correct
2 Correct 0 ms 1088 KB Output is correct
3 Incorrect 0 ms 1088 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Halted 0 ms 0 KB -