您的位置:首页 > 其它

CodeForces 584D Dima and Lisa

2016-01-17 15:05 549 查看
D. Dima and Lisa

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes. Help them to represent the given number as the sum of at most than three primes.

More formally, you are given an odd numer n. Find a set of numbers pi (1 ≤ i ≤ k),
such that

1 ≤ k ≤ 3

pi is
a prime



The numbers pi do
not necessarily have to be distinct. It is guaranteed that at least one possible solution exists.

Input

The single line contains an odd number n (3 ≤ n < 109).

Output

In the first line print k (1 ≤ k ≤ 3),
showing how many numbers are in the representation you found.

In the second line print numbers pi in
any order. If there are multiple possible solutions, you can print any of them.

Sample test(s)

input
27


output
3
5 11 11


Note

A prime is an integer strictly larger than one that is divisible only by one and by itself.

直接暴力

#include <stdio.h>
#include <math.h>
bool isPrime(int num)
{
bool ret=true;
for(int i=2;i<=sqrt(num);i++)
if(num%i==0)
ret=false;
return ret;
}

int main()
{
int n;
scanf("%d",&n);
if(isPrime(n))
printf("1\n%d\n",n);
else if(isPrime(n-2))
printf("2\n2 %d\n",n-2);
else if(isPrime(n-4))
printf("3\n2 2 %d\n",n-4);
else
{
for(int first=3;first<=n;first+=2)
{
if(isPrime(first))
{
int ret=n-first;
for(int second=3;second<ret;second+=2)
{
int third=ret-second;
if(isPrime(second)&&isPrime(third))
{
printf("3\n%d %d %d\n",first,second,third);
return 0;
}
}
}
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: