#49752: cpp ||||||||||||||||


yp11451207@yphs.tp.edu.tw (706-37黃麒恩)

學校 : 臺北市私立延平高級中學
編號 : 312871
來源 : [203.72.178.1]
最後登入時間 :
2025-09-27 11:56:14

#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    int a;//表示午休時長
    int b;//表示去程時長
    int c;//表示等待時間
    int d;//表示吃飯時間
    int e;//表示回程時長



    while(cin>>a>>b>>c>>d>>e){
        if (a-b-c-d-e<0){
            cout<<-1;
        }else{
            cout<<b+c+d+e;

        }
        }


}