이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
long long x, y;
bool check(int x)
{
for(int i = 2; i * i <= x; ++i) if(x % i == 0) return 0;
return 1;
}
signed main()
{
cin >> x >> y;
if(x == 2 && y == 2) cout << "3\n2 5 2";
else if(x == 3 && y == 7) cout << "3\n3 5 7";
else if(x == 7 && y == 3) cout << "3\n7 5 3";
else if(abs(x - y) == 2) cout << "2\n" << x << " " << y;
else if(x == 2 || y == 2)
{
if(check(max(x, y) + 2)) cout << "3\n" << x << " " << max(x, y) + 2 << " " << y;
else if(check(max(x, y) - 2)) cout << "3\n" << x << " " << max(x, y) - 2 << " " << y;
else cout << -1;
}
else if(check(x + 2) && check(y + 2)) cout << "5\n" << x << ' ' << x + 2 << " 2 " << y + 2 << " " << y;
else if(check(x - 2) && check(y - 2)) cout << "3\n" << x << " 2 " << y << "\n";
else if(check(x - 2) && check(y + 2)) cout << "4\n" << x << " 2 " << y + 2 << " " << y;
else if(check(x + 2) && check(y - 2)) cout << "4\n" << x << " " << x + 2 << " 2 " << y;
else cout << -1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |