本站遷移

因為我最近租用了網路空間以及網域,
故本站已遷移至新網站~
這邊的資訊已經正在進行搬移的工作~
希望各位可以到新網站去逛XD

New Website:
http://knightzone.org/

搜尋此網誌

2011年3月17日 星期四

[UVa]10394:Twin Primes

建質數表得解。

[C](1.492)
#include<stdio.h>
int prime[20000001] = { 1, 1, 0 };
int answer[100005] = {0};
int allanswer = 1;
int main()
{
long long i, j;
for( i = 3 ; i < 20000000L && allanswer <= 100000 ; i+=2 )
if( !prime[i] )
{
for( j = i*i ; j < 20000000L ; j += i )
prime[j] = 1;
if( !prime[i] && !prime[i-2] )
answer[allanswer++] = i-2;
}
int S;
while( scanf( "%d", &S ) != EOF )
printf( "(%d, %d)\n", answer[S], answer[S]+2 );
return 0;
}
view raw UVa10394.c hosted with ❤ by GitHub

0 意見:

張貼留言