[Add] solved solutions

This commit is contained in:
2023-03-02 20:59:51 +07:00
parent 48081e0a05
commit 5499ac06c2
42 changed files with 1480 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#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;
}