Gym - 102394Justifying the Conjecture【找规律】

题目

传送门
在这里插入图片描述

Input
3
4
6
7
Output
-1
2 4
3 4

题意:给出一个数判断是否能拆成一个素数和合数,可以的话输出素数和合数,否则输出-1

思路:模拟之后发现这个数减去2或3后剩下的数如果能整除2那么这个数就是符合条件的,否则输出-1,具体上代码

AC code

#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<map>
#include<sstream>
#include<queue>
#include<stack>
using namespace std;
#define ll long long
const int mod=1e9+7;
int n,a[120000];
void solve()
{
    cin>>n;
    int flag=0;
    if(n<=5)printf("-1\n");
      else
      {
          int p=n-2,q=n-3;
          if(p%2==0)printf("%d %d\n",2,p);
         else if(q%2==0) printf("%d %d\n",3,q);
            else printf("-1\n");
      }
}
int main()
{
    ios::sync_with_stdio(0);
    int t;
    while(cin>>t)
    {
        while(t--)
        solve();}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值