結果

問題 No.7 プライムナンバーゲーム
ユーザー mafuyu-akimafuyu-aki
提出日時 2017-04-16 00:44:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,395 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 34,920 KB
実行使用メモリ 8,768 KB
最終ジャッジ日時 2023-09-26 02:02:57
合計ジャッジ時間 6,979 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,748 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

#define READ_BUFSIZE ( 16 )
#define READ_DELIMITER ( " " )


//標準入力取得(1行)

int GetStdin( char* pszStr, int lMaxLen )
{
	int lLen = 0;

    memset( pszStr, 0, lMaxLen );
    if( fgets( pszStr, lMaxLen, stdin ) )
    {
	    lLen = strlen( pszStr );
	    if( lLen >= 1 )
	    {
			if( pszStr[ lLen - 1 ] == 0x0A )
			{
				pszStr[ lLen - 1 ] = 0;
				lLen--;
			}
		}
	}
	
	return( lLen );
}

//標準入力を取得
//区切り文字で区切られている文字列を取り出す
//取り出した文字列のポインタをポインタ配列にセットする (数値型)
int split(char *pszStr, int lStrMax, const char *pszDelim, int *palOutList) {
    char *pszToken;
    int count = 0;
    char *pszNext_token = 0;
	int lLen = 0;
	int lNum = 0;

    memset( pszStr, 0, lStrMax );
    lLen = GetStdin( pszStr, lStrMax );
    
	if( lLen > 0 )
	{

	    pszToken = strtok( pszStr, pszDelim );

	    while ( pszToken != NULL ) 
	    {
            *palOutList = atoi( pszToken );
			lNum++;
//	        pszToken = strtok_s(NULL, pszDelim, &pszNext_token);
		    pszToken = strtok( NULL, pszDelim );
			palOutList++;
	    }
	}
    return lNum;
}


bool isSosu(int N)
{
	//#include <math.h>

	if( N == 0 )
		return false;

	if( N == 1 || N == 2 )
		return true;

	if( N % 2 == 0 )
		return false;

	bool isSosu = true;
	//for( int i = 3; i < N; i +=2 )
	for( int i = 3; i <= sqrt((float)N); i +=2 )  
	{
		if( N % i == 0 )
		{
			isSosu = false;
			break;
		}

	}
	return( isSosu );
}

bool game( int N, int* pS, int Scount, bool my )
{
	bool bWin = false;
	for( int i = 0; i < Scount && pS[i] <= N; i++ )
	{
		if( N-pS[i] > 2 )
		{
			if( my ) my = false;
			else my = true;
			game( N-pS[i], pS, Scount, my );
		}
		else
		{
			if( my )
			{
				bWin = true;
				break;
			}

		}

	}
	return( bWin );

}


int main(int argc, char *argv[]) 
{
	//10000の場合、素数の数は1230個
	
	char szRead[READ_BUFSIZE] = "";
	//char* psOutbuf[10000] = { 0 };
	int lInput[2] = {0};

	split( szRead, READ_BUFSIZE, READ_DELIMITER, lInput );

	int N = lInput[0];
	int S[2000] = {0};
	int count = 0;
	bool my = true;

	for( int i = 1; i <= N; i++ )
	{
		if( isSosu( i ) )
		{
			S[count] = i;
			count++;
		}
	}

	if( game( N, S, count, my ) )
		printf( "Win\n" );
	else
		printf( "Lose\n" );
	
	return 0;

}

0