mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 04:10:18 +00:00
31 lines
505 B
C++
31 lines
505 B
C++
#include <iostream>
|
|
#include <cmath>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int n, i, l = 0, w = 0, a, b, c = 0, d = 0;
|
|
cin >> n;
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
cin >> a >> b;
|
|
c = c + a;
|
|
d = d + b;
|
|
if (abs(c - d) > l)
|
|
{
|
|
l = abs(c - d);
|
|
if (c > d)
|
|
{
|
|
w = 1;
|
|
}
|
|
else
|
|
{
|
|
w = 2;
|
|
}
|
|
}
|
|
}
|
|
cout << w << " " << l << endl;
|
|
return 0;
|
|
}
|