結果

問題 No.7 プライムナンバーゲーム
ユーザー rlangevinrlangevin
提出日時 2023-01-08 02:17:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-05-08 20:34:19
合計ジャッジ時間 2,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,624 KB
testcase_01 AC 45 ms
58,368 KB
testcase_02 AC 68 ms
61,056 KB
testcase_03 AC 49 ms
60,672 KB
testcase_04 AC 48 ms
60,416 KB
testcase_05 AC 50 ms
60,416 KB
testcase_06 AC 55 ms
60,416 KB
testcase_07 AC 54 ms
60,800 KB
testcase_08 AC 50 ms
60,800 KB
testcase_09 AC 56 ms
60,800 KB
testcase_10 AC 45 ms
58,752 KB
testcase_11 AC 52 ms
61,056 KB
testcase_12 AC 60 ms
61,056 KB
testcase_13 AC 61 ms
60,800 KB
testcase_14 AC 65 ms
61,056 KB
testcase_15 AC 64 ms
60,928 KB
testcase_16 AC 62 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return sorted(list(S))

S = Sieve(10000)

N = int(input())
dp = [0] * (N + 1)
dp[0] = dp[1] = 1
for i in range(2, N + 1):
    flag = 1
    for s in S:
        if i - s < 0:
            break
        flag &= dp[i - s]
    if flag == 0:
        dp[i] = 1
        
print("Win") if dp[N] else print("Lose")
0