AC

root  •  2年前


include <bits/stdc++.h>

using namespace std; int main() {

int x[6];

for(int i=1;i<=5;i++)cin>>x[i];

for(int i=1;i<=4;i++)
     for(int j=1;j<=4;j++){
         if(x[i]+x[j+1]==x[5])
         {
             printf("1");
             return 0;
         }
     }
printf("-1");
return 0;

}


评论:

请先登录,才能进行评论