結果

問題 No.7 プライムナンバーゲーム
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-11-28 08:15:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 1,550 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 79,836 KB
最終ジャッジ日時 2024-10-05 04:26:44
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
67,456 KB
testcase_01 AC 55 ms
67,712 KB
testcase_02 AC 184 ms
79,336 KB
testcase_03 AC 83 ms
79,104 KB
testcase_04 AC 74 ms
79,616 KB
testcase_05 AC 74 ms
79,232 KB
testcase_06 AC 115 ms
79,204 KB
testcase_07 AC 99 ms
79,196 KB
testcase_08 AC 86 ms
79,736 KB
testcase_09 AC 122 ms
79,360 KB
testcase_10 AC 55 ms
68,224 KB
testcase_11 AC 101 ms
79,836 KB
testcase_12 AC 158 ms
79,232 KB
testcase_13 AC 158 ms
79,228 KB
testcase_14 AC 190 ms
79,232 KB
testcase_15 AC 180 ms
79,292 KB
testcase_16 AC 168 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math

input = sys.stdin.readline

N = int(input())
class prime_factorize():
    
    def __init__(self,M=10**6):
        self.sieve = [-1]*(M+1)
        self.sieve[1] = 1
        self.p = [False]*(M+1)
        self.mu = [1]*(M+1)
        
        for i in range(2,M+1):
            if self.sieve[i] == -1:
                self.p[i] = True
                
                i2 = i**2
                for j in range(i2,M+1,i2):
                    
                    self.mu[j] = 0
                
                
                for j in range(i,M+1,i):
                    self.sieve[j] = i
                    
                    self.mu[j] *= -1
                    
    def factors(self,x):
        tmp = []
        while self.sieve[x] != x:
            tmp.append(self.sieve[x])
            x //= self.sieve[x]
        tmp.append(self.sieve[x])
        return tmp
        
    def is_prime(self,x):
        return self.p[x]
        
    def mobius(self,x):
        return self.mu[x]
        
pf = prime_factorize(100010)

dp = [False]*(N+1)
plist = []
for i in range(2,N+1):
    if pf.is_prime(i):
        plist.append(i)

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

for i in range(2,N+1):
    

    cnd = []
    for p in plist:
        if i-p>=0:
            cnd.append(i-p)
    
    if any(dp[c]==False for c in cnd):
        dp[i]=True
if dp[N]:
    print('Win')
else:
    print('Lose')
0