博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZCMU Problem G: 素数对(数论,素数筛法)
阅读量:5895 次
发布时间:2019-06-19

本文共 483 字,大约阅读时间需要 1 分钟。

#include
#include
#include
#include
#include
using namespace std;#define maxn 32800int main(){ int n,cnt,i,j;//筛法,不然超时 int a[maxn]={0}; for(i=2;i

  

Description

输入一个正整数n,求有几对素数x,y,满足n=x+y((3,2)和(2,3)视为相同的素数对)。

 

Input

有多组数据,每行输入一个偶整数n(3<n<32768)。n等于0时,输入结束。

 

Output

输出相应的答案。

 

Sample Input

6 10 12 0

Sample Output

1 2 1

转载于:https://www.cnblogs.com/Roni-i/p/7199942.html

你可能感兴趣的文章
Oracle11g数据库的备份及还原
查看>>
js document.queryCommandState() 各个参数
查看>>
分组训练2
查看>>
将二维数组中某个值为空的数组进行删除!
查看>>
c语言指针详解
查看>>
bzoj 2001 CITY 城市建设 cdq分治
查看>>
Spring Boot MyBatis 连接数据库
查看>>
大型网站架构系列:分布式消息队列(一) (转)
查看>>
简单工厂模式(Simple Factory) 创建型模式
查看>>
php关联数组(hash数组)
查看>>
jQuery为div添加select和option
查看>>
leetcode------Path Sum II
查看>>
Java虚拟机1:什么是Java
查看>>
周末学习总结(二)
查看>>
clang failed with exit code 1 的常见情况
查看>>
oc面试 内存泄露
查看>>
Beta版冲刺前准备
查看>>
UGUI学习(一)Canvas
查看>>
nodejs post 数据到php $_POST["content"]接收不到的问题
查看>>
数据系列:如何在Windows Azure虚拟机上设置SQL Server
查看>>