codeforces 568A A. Primes or Palindromes?(打表+暴力枚举)
题目链接:codeforces568A题目大意:给出两个整数p,q,设A=pq,sum1[i]为≤i的素数的个数,sum2[i]为≤i的回文数的个数,问sum1[i]≤A⋅sum2[i]的最大的i是多少题目分析:首先通过线性筛将素数和回文数,然后暴力枚举即可。AC代码:#include
#include
#include
#include
#defineMAX2000007
usingnames