Pagini recente » Borderou de evaluare (job #2042257) | Cod sursa (job #2970546) | Monitorul de evaluare | Borderou de evaluare (job #1641751) | Cod sursa (job #2970547)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inundatii.in");
ofstream fout("inundatii.out");
long long ans , n , x , y , z , lx , ly , lz;
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;
}