答案:210
思路:先打表,然后暴力搜。
#includeusing namespace std;const int x=1e6;int a[x];int main(){ int i,j,k,d; memset(a,0,sizeof(0)); a[0]=a[1]=1; for(i=2;i<=1e6;i++) { if(a[i]==0) { for(j=2;i*j<=1e6;j++) a[i*j]=1; } } for(j=0;j<=1e6;j++) { for(d=1;d<=1e3;d++) { for(k=0;k<10;k++) { if(a[j+d*k]!=0) break; } if(k==9) { cout< <