結果

問題 No.7 プライムナンバーゲーム
ユーザー pekempeypekempey
提出日時 2015-08-23 17:34:39
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,234 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-10-01 15:36:34
合計ジャッジ時間 9,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,272 KB
testcase_01 AC 15 ms
6,272 KB
testcase_02 AC 1,234 ms
6,528 KB
testcase_03 AC 196 ms
6,272 KB
testcase_04 AC 96 ms
6,144 KB
testcase_05 AC 95 ms
6,400 KB
testcase_06 AC 497 ms
6,272 KB
testcase_07 AC 382 ms
6,400 KB
testcase_08 AC 232 ms
6,400 KB
testcase_09 AC 653 ms
6,528 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 395 ms
6,272 KB
testcase_12 AC 912 ms
6,528 KB
testcase_13 AC 947 ms
6,528 KB
testcase_14 AC 1,139 ms
6,528 KB
testcase_15 AC 1,102 ms
6,400 KB
testcase_16 AC 1,039 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10005)

N = int(raw_input())

prime = []
good = [True] * 10101

for i in xrange(2, 10101):
	if good[i]:
		prime.append(i)
		for j in xrange(i * i, 10101, i):
			good[j] = False

dp = [None]	* (N + 1)

dp[0] = True
dp[1] = True

for i in xrange(2, N + 1):
	dp[i] = any([not dp[i - j] for j in prime if j <= i])

if dp[N]:
	print "Win"
else:
	print "Lose"
0