fork(3) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t1,t2,t3,x,y,z,n; bool wd=false;
  6. cin>>n;
  7. cin>>t1>>t2>>t3;
  8. x = t1; y = x + t2; z = y + t3;
  9. for (int i = 0; i<n-1; i++){
  10. cin>>t1>>t2>>t3;
  11. if ((t1<0)||(t2<0)||(t3<0)) {cout<<"Ошибка"; wd=true; break;}
  12. else { x += t1; y = max(x, y) + t2; z = max(y, z) + t3;}
  13. }
  14. if (wd == false) {
  15. cout<<"Общее время обработки всех деталей = "<<z;}
  16. }
Success #stdin #stdout 0s 3416KB
stdin
2 5 4 3 2 4 0
stdout
Общее время обработки всех деталей = 13