結果

問題 No.7 プライムナンバーゲーム
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:56:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,120 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 86,328 KB
最終ジャッジ日時 2024-09-24 15:56:14
合計ジャッジ時間 8,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,392 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 1,120 ms
86,328 KB
testcase_03 AC 66 ms
69,128 KB
testcase_04 AC 54 ms
64,972 KB
testcase_05 AC 54 ms
65,996 KB
testcase_06 AC 279 ms
80,272 KB
testcase_07 AC 200 ms
79,232 KB
testcase_08 AC 69 ms
71,136 KB
testcase_09 AC 471 ms
81,364 KB
testcase_10 AC 32 ms
52,620 KB
testcase_11 AC 210 ms
79,364 KB
testcase_12 AC 747 ms
84,628 KB
testcase_13 AC 806 ms
85,416 KB
testcase_14 AC 1,116 ms
84,996 KB
testcase_15 AC 1,094 ms
84,404 KB
testcase_16 AC 949 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**5)

def Prime(n):
  prime=[True]*(n+1)
  prime[0],prime[1]=False,False
  for p in range(2,n+1):
    if not prime[p]:continue
    for np in range(2*p,n+1,p):
      prime[np]=False
  
  prime_list=[]
  for p in range(n+1):
    if prime[p]:
      prime_list.append(p)
  return prime_list

n=int(input())
P=Prime(n)

dp=[-1]*(n+1)
def grundy(x):
    if dp[x]!=-1:return dp[x]
    if x==2 or x==3:return 0
    
    s=set()
    for p in P:
        if x-p>=2:
            s.add(grundy(x-p))
        
    res=0
    while res in s:
        res+=1
    
    dp[x]=res
    return res

print('Win' if grundy(n) else 'Lose')
0