Pagini recente » Monitorul de evaluare | Monitorul de evaluare | Borderou de evaluare (job #1632616) | Borderou de evaluare (job #2042257) | Cod sursa (job #2970546)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inundatii.in");
ofstream fout("inundatii.out");
int n , x , y , z , lx , ly , lz ;
long long ans;
int main()
{
fin >> n >> lx >> ly >> lz;
for(int i = 1 ; i < n ; ++ i){
fin >> x >> y >> z;
x -= i , y -= i , z -= i;
ans = ans + lx + ly + lz - x - y - z;
}
fout << ans << '\n';
return 0;
}