#include <cstdio>
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
int n, maxt = 21000000,maxs = -1,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 if (maxs < s)
{
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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
0 ms |
1080 KB |
open (syscall #2) was called by the program (disallowed syscall) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |