結果

問題 No.7 プライムナンバーゲーム
ユーザー TomoyarnTomoyarn
提出日時 2023-01-04 09:37:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 875 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-05-05 14:18:19
合計ジャッジ時間 1,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,264 KB
testcase_01 AC 42 ms
59,392 KB
testcase_02 AC 82 ms
62,976 KB
testcase_03 AC 52 ms
62,336 KB
testcase_04 AC 49 ms
61,312 KB
testcase_05 AC 49 ms
61,568 KB
testcase_06 AC 60 ms
62,336 KB
testcase_07 AC 60 ms
62,336 KB
testcase_08 AC 54 ms
62,592 KB
testcase_09 AC 65 ms
62,592 KB
testcase_10 AC 43 ms
59,264 KB
testcase_11 AC 57 ms
62,464 KB
testcase_12 AC 74 ms
62,208 KB
testcase_13 AC 76 ms
62,336 KB
testcase_14 AC 85 ms
62,592 KB
testcase_15 AC 81 ms
62,848 KB
testcase_16 AC 79 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime
    

prime = sieve_of_eratosthenes(10000)

prm = []
for p in range(10001):
    if prime[p]:
        prm.append(p)

N = int(input())
dp = [0] * (N + 1)
for i in range(N + 1):
    dp[i] = True

dp[2] = False
dp[3] = False



if N <= 10:
    print("Win")
    exit()

for i in range(11, N + 1):
    winflag = False
    for p in prm:
        if p >= i:
            break
        elif dp[i - p] == False:
            winflag = True
#            if i == N:
#                print(i, p, dp[i - p])
            break
    dp[i] = winflag


print("Win" if dp[i] else "Lose")
    
0