Submission #666606

# Submission time Handle Problem Language Result Execution time Memory
666606 2022-11-29T07:02:08 Z Koful123 Lutrija (COCI19_lutrija) C++17
0 / 70
86 ms 300 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
#define pb push_back
#define ff first
#define ss second
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()

bool prime(int x){
	if(x == 1) return false;
	for(int i = 2; i * i <= x; i++){
		if(x % i == 0) return false;
	}
	return true;
}

void solve(){

	int a,b;
	cin >> a >> b;

	if(prime(abs(a-b))){
		cout << "2\n" << a << ' ' << b << endl;
		return;
	}

	if(a > b){
		if(prime(a-2) && prime(abs(a-2 - b))){
			cout << "3\n" << a << ' ' << a - 2 << ' ' << b << endl;
		}
		else if(prime(a+2) && prime(a+2 - b)){
			cout << "3\n" <<  a << ' ' << a + 2 << ' ' << b << endl;
		}
		else cout << -1 << endl;
	}
	else{
		if(prime(b-2) && prime(abs(b-2 - a))){
			cout << "3\n" << a << ' ' << b - 2 << ' ' << b << endl;
		}
		else if(prime(b+2) && prime(b+2 - a)){
			cout << "3\n" << a << ' ' << b + 2 << ' ' << b << endl;
		}
		else cout << -1 << endl;	
	}
}
 
signed main(){	
 		
	ios::sync_with_stdio(0);
	cin.tie(0);
 
	int t = 1;
//	cin >> t;
 
	while(t--)
		solve();
 
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 77 ms 296 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 71 ms 300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 86 ms 296 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 86 ms 296 KB Output isn't correct
2 Halted 0 ms 0 KB -