CCPC-Justifying the Conjecture

题目:
J. Justifying the Conjecture
time limit per test
1 second
memory limit per test
512 megabytes
input
standard input
output
standard output

The great mathematician DreamGrid proposes a conjecture, which states that:

Every positive integer can be expressed as the sum of a prime number and a composite number.

DreamGrid can’t justify his conjecture, so you are invited to write a program to verify it. Given a positive integer n
, find a prime number x and a composite number y such that x+y=n.

A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers. A natural number greater than 1 that is not prime is called a composite number. Note that 1

is neither a prime number nor a composite number.
Input

The input contains multiple cases. The first line of the input contains a single integer T
(1≤T≤105

), the number of cases.

For each case, the only line of the input contains a single integer n
(1≤n≤109

).
Output

For each case, print two integers x
and y in a single line, where 1≤x,y<n. If there are multiple valid answers, you may print any of them. If there is no valid answer, print the integer −1

instead.
Example
Input
Copy

3
4
6
7

Output
Copy

-1
2 4
3 4

题意描述:
讲一个数分为质数和合数,不能分的输出-1;
Accept Code:

   #include <iostream>
    #include <math.h>
    int prime(int n)
    {
    	int i;
    	if(n==1)
    	return 1;
    	for(i=2; i<=(int)sqrt(n); i++)
    	{
    		if(n%i==0)
    		return 1;
    	}
    	return 0;
    }
    int main()
    {
    	int i,j,k,n,m;
    	scanf("%d", &n);
    	while(n--)
    	{
    		scanf("%d", &m);
    		int t=1;
    		for(i=2; i<=m/2; i++)
    		{
    			if(prime(i)==0&&prime(m-i)==1)
    			{
    					printf("%d %d\n", i,m-i);
    					t=0;
    					break;
    			}
    		}
    		if(t)
    		printf("-1\n");
    	}
    	return 0;
    }
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

皮皮皮皮皮皮皮卡乒

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值