結果

問題 No.7 プライムナンバーゲーム
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-28 20:50:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 590 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 80,744 KB
最終ジャッジ日時 2024-10-04 17:20:59
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 RE -
testcase_03 AC 73 ms
70,144 KB
testcase_04 AC 60 ms
63,872 KB
testcase_05 AC 61 ms
64,256 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 73 ms
69,760 KB
testcase_09 RE -
testcase_10 AC 39 ms
51,584 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

prime = []
def setPrime(n):
    n += 1
    alive = [True] * n
    i = 2
    while i < n:
        if alive[i]:
            prime.append(i)
            j = 2 * i
            while j < n:
                alive[j] = False
                j += i
        i += 1


def dfs(n):
    if memo[n] != None:
        return memo[n]

    ret = False
    for p in prime:
        if n - p < 0:
            break
        ret |= not dfs(n - p)

    memo[n] = ret
    return ret


N = int(input())
setPrime(N)
memo = [None] * (N + 1)
memo[0] = memo[1] = True
if dfs(N):
    print("Win")
else:
    print("Lose")
0