会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Object_S
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
|
管理
2019年10月2日
P1835 素数密度
摘要: 题目地址基本思路:将区间内质数离散化到空间大小为1e6的数组中.易错点:需要特判l==1和l/primes[i]>1的情况.#include#include#include#includeusing namesp...
阅读全文
posted @ 2019-10-02 10:48 Object_S
阅读(157)
评论(0)
推荐(0)
编辑
P2563 [AHOI2001]质数和分解
摘要: 题目地址易错点:转移时直接使用+=即可.#include#include#includeusing namespace std;const int MAXN=300;int primes[MAXN],primeC...
阅读全文
posted @ 2019-10-02 10:38 Object_S
阅读(139)
评论(0)
推荐(0)
编辑
P1075 质因数分解
摘要: 题目地址#include#includeusing namespace std;int main(){ int n; scanf("%d",&n); for(int i=2;i<=n;i++){ if(!(n%...
阅读全文
posted @ 2019-10-02 10:12 Object_S
阅读(135)
评论(0)
推荐(0)
编辑
AW199 余数之和
摘要: 题目地址#include#include#define ll long longusing namespace std;int main(){ ll n,k; scanf("%lld %lld",&n,&k); ...
阅读全文
posted @ 2019-10-02 00:19 Object_S
阅读(101)
评论(0)
推荐(0)
编辑