結果

問題 No.7 プライムナンバーゲーム
ユーザー RiburaRibura
提出日時 2020-05-01 00:10:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,136 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-01 16:33:55
合計ジャッジ時間 8,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,007 ms
11,136 KB
testcase_03 AC 87 ms
10,880 KB
testcase_04 AC 47 ms
10,880 KB
testcase_05 AC 41 ms
10,880 KB
testcase_06 AC 335 ms
11,008 KB
testcase_07 AC 226 ms
11,136 KB
testcase_08 AC 107 ms
10,880 KB
testcase_09 AC 538 ms
11,008 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 218 ms
11,008 KB
testcase_12 AC 755 ms
11,264 KB
testcase_13 AC 802 ms
11,136 KB
testcase_14 AC 1,136 ms
11,264 KB
testcase_15 AC 994 ms
11,136 KB
testcase_16 AC 978 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)

import math


def eratosthenes(limit):
    A = [i for i in range(2, limit + 1)]
    P = []

    for i in range(limit):
        prime = min(A)

        if prime > math.sqrt(limit):
            break

        P.append(prime)
        for j in range(limit):
            if j >= len(A):
                break
            if A[j] % prime == 0:
                A.pop(j)
                continue

    for a in A:
        P.append(a)

    return P


n = int(readline())
prime_list = eratosthenes(n)
dp = [False] * (n + 1)
dp[0] = True
dp[1] = True
for i in range(2, n + 1):
    for prime in prime_list:
        if prime > i:
            break
        if not dp[i - prime]:
            dp[i] = True
if dp[-1]:
    print('Win')
else:
    print('Lose')
0