結果

問題 No.7 プライムナンバーゲーム
ユーザー convexineqconvexineq
提出日時 2020-11-24 05:15:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 919 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 63,240 KB
最終ジャッジ日時 2024-10-01 16:40:31
合計ジャッジ時間 1,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,856 KB
testcase_01 AC 37 ms
59,276 KB
testcase_02 AC 49 ms
61,724 KB
testcase_03 AC 41 ms
61,300 KB
testcase_04 AC 38 ms
61,448 KB
testcase_05 AC 41 ms
61,288 KB
testcase_06 AC 47 ms
61,628 KB
testcase_07 AC 44 ms
61,692 KB
testcase_08 AC 44 ms
61,692 KB
testcase_09 AC 46 ms
62,600 KB
testcase_10 AC 37 ms
59,916 KB
testcase_11 AC 40 ms
61,796 KB
testcase_12 AC 45 ms
62,488 KB
testcase_13 AC 48 ms
62,432 KB
testcase_14 AC 49 ms
61,816 KB
testcase_15 AC 48 ms
63,240 KB
testcase_16 AC 48 ms
62,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    #iが素数のときis_prime_list[i]=1,それ以外は0
    N+=1
    is_prime_list = [True]*N
#    is_prime_list[0], is_prime_list[1] = False, False #リストが必要なときはこの2行を有効化
#    for j in range(4,N,2): is_prime_list[j] = False
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

#a,b,c = map(int,readline().split())

primes = Eratosthenes(10**4)
n = int(input())
dp = [0]*(n+1) # 0: 後手
dp[0]=dp[1]=1

for i in range(2,n+1):
    for p in primes:
        if i < p: break
        if dp[i-p]==0:
            dp[i] = 1
            break

print("Win" if dp[n] else "Lose")
0