#include <bits/stdc++.h>
#define int long long
bool check(int i){
bool prime= 1 ;
for(int j=2;j*j<=i;j++){
if(i%j==0){
prime = 0;
}
}
return prime ;
}
using namespace std;
signed main(){
int a , b ;
cin>>a>>b ;
if(abs(b-a)==2){
cout << 2 << endl << a << " "<< b ;
return 0 ;
}
if(a>2&&b>2){
int flg = 0 ;
if(a>b){
swap(a,b) ;
flg = 1 ;
}
vector<int> ans ;
ans.push_back(a) ;
while(a!=b){
a+=2 ;
ans.push_back(a) ;
if(check(a)==0){
cout << -1 ;
return 0 ;
}
}
/* if(ans.size()>30){
cout << -1 ;
return 0 ;
}*/
if(flg) reverse(ans.begin(),ans.end()) ;
cout << ans.size() << endl ;
for(int& x :ans) cout << x << " " ;
return 0 ;
}
if(check(abs(a-b))){
cout << 2 << endl ;
cout << a << " " << b ;
return 0 ;
}
if(check(max(a,b)+2)){
cout << 3 << endl ;
cout << a << " " << b+2 << " " << b ;
return 0 ;
}
cout << -1 ;
return 0 ;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
2 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
2 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
145 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
154 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
159 ms |
380 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
62 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |