結果

問題 No.7 プライムナンバーゲーム
ユーザー ntudantuda
提出日時 2022-10-31 12:13:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 66,076 KB
最終ジャッジ日時 2024-07-08 01:50:53
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,676 KB
testcase_01 AC 44 ms
52,724 KB
testcase_02 AC 62 ms
64,808 KB
testcase_03 AC 53 ms
62,404 KB
testcase_04 AC 49 ms
61,448 KB
testcase_05 AC 48 ms
61,464 KB
testcase_06 AC 53 ms
62,780 KB
testcase_07 AC 53 ms
63,212 KB
testcase_08 AC 51 ms
62,320 KB
testcase_09 AC 55 ms
63,224 KB
testcase_10 AC 40 ms
53,056 KB
testcase_11 AC 52 ms
62,336 KB
testcase_12 AC 57 ms
64,420 KB
testcase_13 AC 60 ms
64,296 KB
testcase_14 AC 60 ms
66,076 KB
testcase_15 AC 61 ms
64,908 KB
testcase_16 AC 60 ms
65,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    max = int(N ** 0.5)
    seachList = [i for i in range(2, N + 1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum


N = int(input())
PL = seachPrimeNum(N)
dp = [False] * (N + 1)
dp[0] = True
dp[1] = True
for i in range(2, N + 1):
    for p in PL:
        if i < p:
            break
        if dp[i - p] == False:
            dp[i] = True
            break
print(["Lose", "Win"][dp[N]])
0