結果

問題 No.7 プライムナンバーゲーム
ユーザー Snark86Snark86
提出日時 2016-04-25 03:32:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,924 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-10-01 15:43:39
合計ジャッジ時間 13,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 9 ms
6,400 KB
testcase_02 AC 1,924 ms
6,656 KB
testcase_03 AC 130 ms
6,656 KB
testcase_04 AC 41 ms
6,400 KB
testcase_05 AC 40 ms
6,528 KB
testcase_06 AC 562 ms
6,784 KB
testcase_07 AC 383 ms
6,656 KB
testcase_08 AC 175 ms
6,656 KB
testcase_09 AC 862 ms
6,784 KB
testcase_10 AC 10 ms
6,272 KB
testcase_11 AC 386 ms
6,528 KB
testcase_12 AC 1,374 ms
6,912 KB
testcase_13 AC 1,459 ms
6,912 KB
testcase_14 AC 1,921 ms
6,912 KB
testcase_15 AC 1,808 ms
6,912 KB
testcase_16 AC 1,677 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(raw_input())
primes = []
nums = range(2,N+1)
while nums:
	num = nums.pop(0)
	primes.append(num)
	if num > math.sqrt(N):
		primes += nums
		break
	else:
		nums = filter(lambda x:x%num!=0, nums)

game = [True, True]+[False for _ in range(N-1)]
for i in range(2,N+1):
	for j in filter(lambda x:x<i+1,primes):
		if game[i-j] == False: game[i]=True

print "Win" if game[-1] else "Lose"
0