結果

問題 No.7 プライムナンバーゲーム
ユーザー shisyamokongarishisyamokongari
提出日時 2016-08-22 01:23:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 64,628 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 11:12:05
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cmath>

using namespace std;

#define NMAX 10000
#define WIN 1
#define LOSE 0
#define NOT -1

int main(){

	vector<int> sosuu;
	int hurui[NMAX+1];
	int K,N;
	int wl[NMAX+1];

	for(int i=0;i<=NMAX;i++) hurui[i]=0;
	hurui[0]=1,hurui[1]=1;

	for(int i=0;i<=NMAX;i++){
		if(hurui[i]==0){
			sosuu.push_back(i);
			for(int j=i*2;j<NMAX;j+=i) hurui[j]=1;
		}
	}

	for(int i=0;i<=NMAX;i++) wl[i]=NOT;

	wl[2]=LOSE;
	wl[3]=LOSE;

	while(1){
		bool f=true;
		for(int i=2;i<=NMAX;i++){
			if(wl[i]==NOT) f=false;
		}
		if(f) break;
		for(int i=2;i<=NMAX;i++){
			if(wl[i]!=NOT){
				for(int j=0;j<sosuu.size();j++){
					if(i+sosuu[j]<=NMAX){
						if(wl[i]==LOSE) wl[i+sosuu[j]]=WIN;
						if(wl[i]==WIN&&wl[i+sosuu[j]]!=WIN) wl[i+sosuu[j]]=LOSE;
					}
				}
			}
		}
	}

	cin>>N;

	if(wl[N]==WIN) cout<<"WIN"<<endl;
	else cout<<"LOSE"<<endl;
}

0