[C](1.492)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |
0 意見:
張貼留言