#include<bits/stdc++.h>#include<bits/stdc++.h>
#define int long long
using namespace std;
int a[100001],b[100001],c[100001];
signed main(){
ios::sync_with_stdio(false);
int n;
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
}
int bs=1,cs=1;
for(int i=1;i<=n;i++){
for(int j=i+1;j<=n;j++){
b[bs]=a[i]+a[j];
bs++;
}
}
for(int i=1;i<=n;i++){
for(int j=i+1;j<=n;j++){
c[cs]=fabs(a[i]-a[j]);
cs++;
}
}
for(int i=1;i<=bs;i++){
for(int j=i+1;j<=cs;j++){
if(b[i]==c[j]&&b[i]!=0&&c[j]!=0){
cout<<"Yes";
return 0;
}
}
}
cout<<"No";
return 0;
}
玄学错误,RE60求助(样例全过)