結果

問題 No.7 プライムナンバーゲーム
ユーザー keikei
提出日時 2016-08-11 22:59:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 417 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 70,016 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 15:47:52
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 417 ms
5,248 KB
testcase_03 AC 12 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 81 ms
5,248 KB
testcase_07 AC 48 ms
5,248 KB
testcase_08 AC 16 ms
5,248 KB
testcase_09 AC 142 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 49 ms
5,248 KB
testcase_12 AC 263 ms
5,248 KB
testcase_13 AC 286 ms
5,248 KB
testcase_14 AC 404 ms
5,248 KB
testcase_15 AC 378 ms
5,248 KB
testcase_16 AC 340 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
bool dp[10001];
int calc(int num) {
	if (num - 2 >= 0) {
		if (dp[num - 2] == false) {
			return true;
		}
	}
	for (int i = 3; i <= num; i += 2) {
		int k = 0;
		for (int j = 3; j <= sqrt(i); j += 2) {
			if (i%j == 0) {
				k = 1;
				break;
			}
		}
		if (k == 0) {
			if (num - i >= 0) {
				if (dp[num - i] == false) {
					return true;
				}
			}
		}
	}
	return false;
}

int main() {
	int num;
	cin >> num;
	dp[0] = true; dp[1] = true;
	for (int i = 2; i <= num; i++) {
		dp[i] = calc(i);
	}
	if (dp[num] == true) { cout << "Win" << endl; }
	else { cout << "Lose" << endl; }
	return 0;
}
0