結果

問題 No.7 プライムナンバーゲーム
ユーザー 👑 horiesinitihoriesiniti
提出日時 2016-07-17 16:48:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 61,420 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 04:01:09
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,820 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 12 ms
6,948 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 12 ms
6,944 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 12 ms
6,948 KB
testcase_10 AC 13 ms
6,944 KB
testcase_11 AC 12 ms
6,948 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 12 ms
6,948 KB
testcase_15 AC 13 ms
6,948 KB
testcase_16 AC 12 ms
6,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:36:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   36 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <stdio.h>
bool isP(int n){
	if(n<2)return false;
	for(int i=2;i*i<=n;i++){
		if(n%i==0)return false;
	}
	return true;
}

int main() {
	// your code goes here
	bool loss[10001];
	loss[0]=false;
	loss[1]=false;
	std::vector<int> vec;
	for(int i=2;i<=10000;i++){
		if(isP(i)){
			vec.push_back(i);
		}
	}
	for(int i=2;i<=10000;i++){
		bool isV=false;
		for(int j=0;(j<vec.size())&&(vec[j]<=i);j++){
			int p=vec[j];
			isV=(isV||loss[i-p]);
		}
		if(isV==true){
			loss[i]=false;
		}else{
			loss[i]=true;
		}
	}
	int n;
	scanf("%d",&n);
	printf("%s\n",loss[n]?"Lose":"Win");
	return 0;
}
0