Submission #1084424

# Submission time Handle Problem Language Result Execution time Memory
1084424 2024-09-06T08:36:07 Z laure Lutrija (COCI19_lutrija) C++14
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#define int long long
using namespace std;
signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    vector<bool>vis(1005,0);
    set<int>p;
    for(int i=2;i<=1000;i++)
    {
        if(!vis[i])
        {
            p.insert(i);
            for(int j=i*i;j<=1000;j+=i)vis[j]=1;
        }
    }
    int a,b;
    cin>>a>>b;
    if(p.count(abs(a-b))){cout<<a<<" "<<b<<'\n';return 0;}
    int ans=-1;
    for(auto u:p)
    {
        if(p.count(abs(a-u))&&p.count(abs(b-u)))
        {
            ans=u;
            break;
        }
    }
    else cout<<a<<" "<<ans<<" "<<b<<'\n';
}

Compilation message

lutrija.cpp: In function 'int main()':
lutrija.cpp:31:5: error: 'else' without a previous 'if'
   31 |     else cout<<a<<" "<<ans<<" "<<b<<'\n';
      |     ^~~~