結果

問題 No.7 プライムナンバーゲーム
ユーザー rlangevinrlangevin
提出日時 2023-01-08 02:17:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 62,564 KB
最終ジャッジ日時 2024-12-15 03:47:37
合計ジャッジ時間 1,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,740 KB
testcase_01 AC 39 ms
59,360 KB
testcase_02 AC 56 ms
62,396 KB
testcase_03 AC 42 ms
61,664 KB
testcase_04 AC 42 ms
61,496 KB
testcase_05 AC 42 ms
61,308 KB
testcase_06 AC 47 ms
61,108 KB
testcase_07 AC 45 ms
61,204 KB
testcase_08 AC 44 ms
62,564 KB
testcase_09 AC 47 ms
61,444 KB
testcase_10 AC 39 ms
59,036 KB
testcase_11 AC 44 ms
61,428 KB
testcase_12 AC 52 ms
62,184 KB
testcase_13 AC 52 ms
61,716 KB
testcase_14 AC 56 ms
61,160 KB
testcase_15 AC 56 ms
61,972 KB
testcase_16 AC 55 ms
61,784 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