結果

問題 No.7 プライムナンバーゲーム
ユーザー 8080
提出日時 2018-09-06 00:17:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 803 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-04-27 16:05:30
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
N = int(input())
isPrime = [True] * (N + 1)

#エラトステネスの篩
for i in range(2,N + 1) :
    if isPrime[i]:
        for j in range(2 * i,N + 1,i):
            isPrime[j]=False
            
dp = [-1] * (N + 1)
#grundy数を求める
def grundy(x):
    #計算済みの場合
    if dp[x] == 0 :
        return dp[x]
    #2、または3を渡されたら負け
    if x == 2 or x == 3:
        dp[x] = 0
        return dp[x]
    
    #結果を収納するリスト
    lst = []
    for i in range(2,x+1):
        #iが素数で、かつ現在値からiを引いた数が2以上
        if isPrime[i] and x-i >= 4:
            lst.append(grundy(x-i))
        
    dp[x] = len(lst)
    return dp[x]

res = grundy(N)
if res!=0:
    print("Lose")
else:
    print("Win")



0